Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(225)

Unified Diff: Source/devtools/front_end/extensions/ExtensionView.js

Issue 1113813002: [DevTools] Rename View to Widget. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/devtools/front_end/extensions/ExtensionView.js
diff --git a/Source/devtools/front_end/extensions/ExtensionView.js b/Source/devtools/front_end/extensions/ExtensionView.js
index 5d55d31a2163c53fcdaeded4f1a046797eb3d370..19227c8919b0770e997244bdaadf17dfe1739290 100644
--- a/Source/devtools/front_end/extensions/ExtensionView.js
+++ b/Source/devtools/front_end/extensions/ExtensionView.js
@@ -30,7 +30,7 @@
/**
* @constructor
- * @extends {WebInspector.View}
+ * @extends {WebInspector.Widget}
* @param {!WebInspector.ExtensionServer} server
* @param {string} id
* @param {string} src
@@ -38,7 +38,7 @@
*/
WebInspector.ExtensionView = function(server, id, src, className)
{
- WebInspector.View.call(this);
+ WebInspector.Widget.call(this);
this.element.className = "flex-auto fill"; // Override
this._server = server;
@@ -73,7 +73,7 @@ WebInspector.ExtensionView.prototype = {
this._server.notifyViewShown(this._id, this._frameIndex);
},
- __proto__: WebInspector.View.prototype
+ __proto__: WebInspector.Widget.prototype
}
/**
« no previous file with comments | « Source/devtools/front_end/extensions/ExtensionPanel.js ('k') | Source/devtools/front_end/inspectorCommon.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698