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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/SyntaxHighlighter.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/ui/SyntaxHighlighter.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/SyntaxHighlighter.js b/third_party/WebKit/Source/devtools/front_end/ui/SyntaxHighlighter.js
index b9bcb1c9f4feaa07f14608500d1eeb0b44430c8f..f11953463899955b5b105d0605be64adaa9c4af1 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/SyntaxHighlighter.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/SyntaxHighlighter.js
@@ -64,10 +64,10 @@ UI.SyntaxHighlighter = class {
var plainTextStart;
var line;
- return self.runtime.extension(Common.TokenizerFactory).instance().then(processTokens.bind(this));
+ return self.runtime.extension(TextUtils.TokenizerFactory).instance().then(processTokens.bind(this));
/**
- * @param {!Common.TokenizerFactory} tokenizerFactory
+ * @param {!TextUtils.TokenizerFactory} tokenizerFactory
* @this {UI.SyntaxHighlighter}
*/
function processTokens(tokenizerFactory) {

Powered by Google App Engine
This is Rietveld 408576698