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

Unified Diff: third_party/WebKit/Source/devtools/front_end/layer_viewer/LayerViewHost.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/layer_viewer/LayerViewHost.js
diff --git a/third_party/WebKit/Source/devtools/front_end/layer_viewer/LayerViewHost.js b/third_party/WebKit/Source/devtools/front_end/layer_viewer/LayerViewHost.js
index 73f00e18446950f89801b957ce8ad8c998faa5ac..ff3ac686dee140bec4cc59e85921771faec5fce4 100644
--- a/third_party/WebKit/Source/devtools/front_end/layer_viewer/LayerViewHost.js
+++ b/third_party/WebKit/Source/devtools/front_end/layer_viewer/LayerViewHost.js
@@ -12,17 +12,17 @@ LayerViewer.LayerView.prototype = {
/**
* @param {?LayerViewer.LayerView.Selection} selection
*/
- hoverObject: function(selection) {},
+ hoverObject(selection) {},
/**
* @param {?LayerViewer.LayerView.Selection} selection
*/
- selectObject: function(selection) {},
+ selectObject(selection) {},
/**
* @param {?SDK.LayerTreeBase} layerTree
*/
- setLayerTree: function(layerTree) {}
+ setLayerTree(layerTree) {}
};
/**

Powered by Google App Engine
This is Rietveld 408576698