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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sources/CSSSourceFrame.js

Issue 2149833005: DevTools: rename SourceFrame.onTextEditorContentLoaded into onTextEditorContentSet (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebaseline Created 4 years, 5 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/sources/CSSSourceFrame.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/CSSSourceFrame.js b/third_party/WebKit/Source/devtools/front_end/sources/CSSSourceFrame.js
index 47a4c210020854e5ca202fd963e1a4585da49aa5..58bdf45e533b57dca5820d254a73a6d9d2db28a3 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/CSSSourceFrame.js
+++ b/third_party/WebKit/Source/devtools/front_end/sources/CSSSourceFrame.js
@@ -172,9 +172,9 @@ WebInspector.CSSSourceFrame.prototype = {
/**
* @override
*/
- onTextEditorContentLoaded: function()
+ onTextEditorContentSet: function()
{
- WebInspector.UISourceCodeFrame.prototype.onTextEditorContentLoaded.call(this);
+ WebInspector.UISourceCodeFrame.prototype.onTextEditorContentSet.call(this);
if (Runtime.experiments.isEnabled("sourceColorPicker"))
this._updateColorSwatches();
},

Powered by Google App Engine
This is Rietveld 408576698