Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / Source / devtools / front_end / components / Panel.js
index fc09989..1ff727c 100644 (file)
@@ -127,7 +127,7 @@ WebInspector.Panel.prototype = {
 
     /**
      * @param {!Array.<!WebInspector.KeyboardShortcut.Descriptor>} keys
-     * @param {function(?Event=):boolean} handler
+     * @param {function(!Event=):boolean} handler
      */
     registerShortcuts: function(keys, handler)
     {
@@ -215,17 +215,17 @@ WebInspector.PanelDescriptor.prototype = {
 
 /**
  * @constructor
- * @param {!WebInspector.ModuleManager.Extension} extension
+ * @param {!Runtime.Extension} extension
  * @implements {WebInspector.PanelDescriptor}
  */
-WebInspector.ModuleManagerExtensionPanelDescriptor = function(extension)
+WebInspector.RuntimeExtensionPanelDescriptor = function(extension)
 {
     this._name = extension.descriptor()["name"];
     this._title = WebInspector.UIString(extension.descriptor()["title"]);
     this._extension = extension;
 }
 
-WebInspector.ModuleManagerExtensionPanelDescriptor.prototype = {
+WebInspector.RuntimeExtensionPanelDescriptor.prototype = {
     /**
      * @return {string}
      */