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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sass/ASTSourceMap.js

Issue 2769843003: DevTools: split text_utils out of common module (Closed)
Patch Set: rebaseline Created 3 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: third_party/WebKit/Source/devtools/front_end/sass/ASTSourceMap.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sass/ASTSourceMap.js b/third_party/WebKit/Source/devtools/front_end/sass/ASTSourceMap.js
index 95bc707207b02e89613dbfb4cd0dc907c246adaa..5a81f6a9095cecfd48ed025a369aec6917d5f835 100644
--- a/third_party/WebKit/Source/devtools/front_end/sass/ASTSourceMap.js
+++ b/third_party/WebKit/Source/devtools/front_end/sass/ASTSourceMap.js
@@ -10,7 +10,7 @@ Sass.ASTSourceMap = class {
* @param {string} compiledURL
* @param {string} sourceMapURL
* @param {!Map<string, !Sass.SASSSupport.AST>} models
- * @param {?function(!Sass.ASTSourceMap, !Array<!Common.TextRange>, !Array<string>):!Promise<?SDK.SourceMap.EditResult>} editCallback
+ * @param {?function(!Sass.ASTSourceMap, !Array<!TextUtils.TextRange>, !Array<string>):!Promise<?SDK.SourceMap.EditResult>} editCallback
*/
constructor(compiledURL, sourceMapURL, models, editCallback) {
this._editCallback = editCallback;
@@ -98,7 +98,7 @@ Sass.ASTSourceMap = class {
/**
* @override
- * @param {!Array<!Common.TextRange>} ranges
+ * @param {!Array<!TextUtils.TextRange>} ranges
* @param {!Array<string>} texts
* @return {!Promise<?SDK.SourceMap.EditResult>}
*/

Powered by Google App Engine
This is Rietveld 408576698