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

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

Issue 2562453003: [DevTools] Remove Common.Event.target field. (Closed)
Patch Set: works Created 4 years 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 770c9505f3e35f3363db9704b214e30fe7f3b709..d6ecba643d25b13b6fd1dae65766a5c713d9bb6c 100644
--- a/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
+++ b/third_party/WebKit/Source/devtools/front_end/sources/JavaScriptSourceFrame.js
@@ -284,6 +284,9 @@ Sources.JavaScriptSourceFrame = class extends Sources.UISourceCodeFrame {
.then(populateSourceMapMembers.bind(this));
}
+ /**
+ * @param {!Common.Event} event
+ */
_workingCopyChanged(event) {
if (this._supportsEnabledBreakpointsWhileEditing() || this._scriptFileForTarget.size)
return;
@@ -294,6 +297,9 @@ Sources.JavaScriptSourceFrame = class extends Sources.UISourceCodeFrame {
this._restoreBreakpointsAfterEditing();
}
+ /**
+ * @param {!Common.Event} event
+ */
_workingCopyCommitted(event) {
this._scriptsPanel.updateLastModificationTime();
if (this._supportsEnabledBreakpointsWhileEditing())

Powered by Google App Engine
This is Rietveld 408576698