Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / devtools / front_end / ui / ActionRegistry.js
index 0cf9faf..5e82f9f 100644 (file)
@@ -7,7 +7,7 @@
  */
 WebInspector.ActionRegistry = function()
 {
-    /** @type {!StringMap.<!WebInspector.ModuleManager.Extension>} */
+    /** @type {!StringMap.<!Runtime.Extension>} */
     this._actionsById = new StringMap();
     this._registerActions();
 }
@@ -15,10 +15,10 @@ WebInspector.ActionRegistry = function()
 WebInspector.ActionRegistry.prototype = {
     _registerActions: function()
     {
-        WebInspector.moduleManager.extensions(WebInspector.ActionDelegate).forEach(registerExtension, this);
+        self.runtime.extensions(WebInspector.ActionDelegate).forEach(registerExtension, this);
 
         /**
-         * @param {!WebInspector.ModuleManager.Extension} extension
+         * @param {!Runtime.Extension} extension
          * @this {WebInspector.ActionRegistry}
          */
         function registerExtension(extension)