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

Unified Diff: third_party/WebKit/Source/devtools/front_end/workspace/UISourceCode.js

Issue 2515763003: DevTools: use shorthand syntax in interface definitions. (Closed)
Patch Set: Created 4 years, 1 month 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/workspace/UISourceCode.js
diff --git a/third_party/WebKit/Source/devtools/front_end/workspace/UISourceCode.js b/third_party/WebKit/Source/devtools/front_end/workspace/UISourceCode.js
index 99209626d2de29ad548f7a9b75fa2644981ca10c..d105466f9c1f06d68e59203c38fbf26db2ec7985 100644
--- a/third_party/WebKit/Source/devtools/front_end/workspace/UISourceCode.js
+++ b/third_party/WebKit/Source/devtools/front_end/workspace/UISourceCode.js
@@ -643,8 +643,8 @@ Workspace.UISourceCode = class extends Common.Object {
removeAllDecorations() {
var decorationList = this._decorations.valuesArray();
this._decorations.clear();
- decorationList.forEach(marker =>
- this.dispatchEventToListeners(Workspace.UISourceCode.Events.LineDecorationRemoved, marker));
+ decorationList.forEach(
+ marker => this.dispatchEventToListeners(Workspace.UISourceCode.Events.LineDecorationRemoved, marker));
}
/**

Powered by Google App Engine
This is Rietveld 408576698