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

Unified Diff: Source/devtools/front_end/sources/AsyncOperationsSidebarPane.js

Issue 988663002: DevTools: extract classes from BreakpointsSidebarPane.js (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 9 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/sources/AsyncOperationsSidebarPane.js
diff --git a/Source/devtools/front_end/sources/AsyncOperationsSidebarPane.js b/Source/devtools/front_end/sources/AsyncOperationsSidebarPane.js
index 56a169add2b4dff0bb53edda6cc0928a99ca7f75..fccaa5cb53d41b011bd8863ff0623c523cd297e7 100644
--- a/Source/devtools/front_end/sources/AsyncOperationsSidebarPane.js
+++ b/Source/devtools/front_end/sources/AsyncOperationsSidebarPane.js
@@ -4,12 +4,12 @@
/**
* @constructor
- * @extends {WebInspector.NativeBreakpointsSidebarPane}
+ * @extends {WebInspector.BreakpointsSidebarPaneBase}
* @implements {WebInspector.TargetManager.Observer}
*/
WebInspector.AsyncOperationsSidebarPane = function()
{
- WebInspector.NativeBreakpointsSidebarPane.call(this, WebInspector.UIString("Async Operation Breakpoints"));
+ WebInspector.BreakpointsSidebarPaneBase.call(this, WebInspector.UIString("Async Operation Breakpoints"));
this.bodyElement.classList.add("async-operations");
this._updateEmptyElement();
@@ -374,5 +374,5 @@ WebInspector.AsyncOperationsSidebarPane.prototype = {
return operation;
},
- __proto__: WebInspector.NativeBreakpointsSidebarPane.prototype
+ __proto__: WebInspector.BreakpointsSidebarPaneBase.prototype
}
« no previous file with comments | « Source/devtools/front_end/components/module.json ('k') | Source/devtools/front_end/sources/BreakpointsSidebarPane.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698