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

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

Issue 2493373002: DevTools: rename WebInspector into modules. (Closed)
Patch Set: for bots Created 4 years, 1 month 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/PropertyChangeHighlighter.js
diff --git a/third_party/WebKit/Source/devtools/front_end/elements/PropertyChangeHighlighter.js b/third_party/WebKit/Source/devtools/front_end/elements/PropertyChangeHighlighter.js
index 98f04aceb5849119ffdd0780324c275390d2e96f..fb665c2131b3b34381d5c493e1a22d6f292edc8b 100644
--- a/third_party/WebKit/Source/devtools/front_end/elements/PropertyChangeHighlighter.js
+++ b/third_party/WebKit/Source/devtools/front_end/elements/PropertyChangeHighlighter.js
@@ -4,12 +4,12 @@
/**
* @unrestricted
*/
-WebInspector.PropertyChangeHighlighter = class {
+Elements.PropertyChangeHighlighter = class {
/**
- * @param {!WebInspector.StylesSidebarPane} ssp
- * @param {!WebInspector.CSSModel} cssModel
+ * @param {!Elements.StylesSidebarPane} ssp
+ * @param {!SDK.CSSModel} cssModel
* @param {!Protocol.CSS.StyleSheetId} styleSheetId
- * @param {!WebInspector.TextRange} range
+ * @param {!Common.TextRange} range
*/
constructor(ssp, cssModel, styleSheetId, range) {
this._styleSidebarPane = ssp;
@@ -80,8 +80,8 @@ WebInspector.PropertyChangeHighlighter = class {
/**
*
- * @param {!WebInspector.TextRange} outterRange
- * @param {!WebInspector.TextRange} innerRange
+ * @param {!Common.TextRange} outterRange
+ * @param {!Common.TextRange} innerRange
* @return {boolean}
*/
_checkRanges(outterRange, innerRange) {
@@ -98,10 +98,10 @@ WebInspector.PropertyChangeHighlighter = class {
/**
* @unrestricted
*/
-WebInspector.PropertyRevealHighlighter = class {
+Elements.PropertyRevealHighlighter = class {
/**
- * @param {!WebInspector.StylesSidebarPane} ssp
- * @param {!WebInspector.CSSProperty} cssProperty
+ * @param {!Elements.StylesSidebarPane} ssp
+ * @param {!SDK.CSSProperty} cssProperty
*/
constructor(ssp, cssProperty) {
this._styleSidebarPane = ssp;

Powered by Google App Engine
This is Rietveld 408576698