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

Unified Diff: third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js

Issue 1902993002: [DevTools] Introduce provisional blackboxing (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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: third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js
diff --git a/third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js b/third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js
index fa507a75a58bb9e8345e7def17227458da46c5c2..ff1282e90be6ecf001c8c4765a08f82f22eebb34 100644
--- a/third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js
+++ b/third_party/WebKit/Source/devtools/front_end/elements/StylesSidebarPane.js
@@ -113,7 +113,7 @@ WebInspector.StylesSidebarPane.prototype = {
{
var cssModel = /** @type {!WebInspector.CSSModel} */(event.target);
var styleSheetId = event.data["id"];
- var sourceRange = /** @type {!CSSAgent.SourceRange} */(event.data["range"]);
+ var sourceRange = /** @type {!RuntimeAgent.SourceRange} */(event.data["range"]);
var range = WebInspector.TextRange.fromObject(sourceRange);
this._decorator = new WebInspector.PropertyChangeHighlighter(this, cssModel, styleSheetId, range);
this.update();

Powered by Google App Engine
This is Rietveld 408576698