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

Unified Diff: third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.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/JavaScriptSourceFrame.js
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js b/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
index 74143971a6e4eec07dada63b194d519190ff5263..38bd4605759f1b4f76d7d3233f52314dcdf43818 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
+++ b/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
@@ -996,9 +996,9 @@ WebInspector.JavaScriptSourceFrame.prototype = {
/**
* @override
*/
- onTextEditorContentLoaded: function()
+ onTextEditorContentSet: function()
{
- WebInspector.UISourceCodeFrame.prototype.onTextEditorContentLoaded.call(this);
+ WebInspector.UISourceCodeFrame.prototype.onTextEditorContentSet.call(this);
if (this._executionLocation)
this.setExecutionLocation(this._executionLocation);

Powered by Google App Engine
This is Rietveld 408576698