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

Unified Diff: Source/devtools/front_end/network/XMLView.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/network/XMLView.js
diff --git a/Source/devtools/front_end/network/XMLView.js b/Source/devtools/front_end/network/XMLView.js
index 42b04868a3c19f8240ee35b97dbca6a928351b6e..3e05de441cae18dca751d8de871817969bf71581 100644
--- a/Source/devtools/front_end/network/XMLView.js
+++ b/Source/devtools/front_end/network/XMLView.js
@@ -4,12 +4,12 @@
/**
* @constructor
- * @extends {WebInspector.View}
+ * @extends {WebInspector.Widget}
* @param {!Document} parsedXML
*/
WebInspector.XMLView = function(parsedXML)
{
- WebInspector.View.call(this, true);
+ WebInspector.Widget.call(this, true);
this.registerRequiredCSS("network/xmlView.css");
this.contentElement.classList.add("shadow-xml-view", "source-code");
var treeOutline = new TreeOutline();
@@ -36,7 +36,7 @@ WebInspector.XMLView.parseXML = function(text, mimeType)
}
WebInspector.XMLView.prototype = {
- __proto__: WebInspector.View.prototype
+ __proto__: WebInspector.Widget.prototype
}
/**
« no previous file with comments | « Source/devtools/front_end/network/ResourceWebSocketFrameView.js ('k') | Source/devtools/front_end/profiler/CPUProfileView.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698