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

Unified Diff: third_party/WebKit/Source/devtools/front_end/bindings/LiveLocation.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/bindings/LiveLocation.js
diff --git a/third_party/WebKit/Source/devtools/front_end/bindings/LiveLocation.js b/third_party/WebKit/Source/devtools/front_end/bindings/LiveLocation.js
index 8e8974b4820084734b77910e7affcd7614e068e1..d665df8ea666dbf6f1e44bba5d7e4f1bae434cfc 100644
--- a/third_party/WebKit/Source/devtools/front_end/bindings/LiveLocation.js
+++ b/third_party/WebKit/Source/devtools/front_end/bindings/LiveLocation.js
@@ -5,19 +5,19 @@
Bindings.LiveLocation = function() {};
Bindings.LiveLocation.prototype = {
- update: function() {},
+ update() {},
/**
* @return {?Workspace.UILocation}
*/
- uiLocation: function() {},
+ uiLocation() {},
- dispose: function() {},
+ dispose() {},
/**
* @return {boolean}
*/
- isBlackboxed: function() {}
+ isBlackboxed() {}
};
/**

Powered by Google App Engine
This is Rietveld 408576698