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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/TabbedPane.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/ui/TabbedPane.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/TabbedPane.js b/third_party/WebKit/Source/devtools/front_end/ui/TabbedPane.js
index eb382f9976857dd3e319624553e97433d0c9f090..3616263ac050f151e60f7213914d8f8037298465 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/TabbedPane.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/TabbedPane.js
@@ -1208,11 +1208,11 @@ UI.TabbedPaneTabDelegate.prototype = {
* @param {!UI.TabbedPane} tabbedPane
* @param {!Array.<string>} ids
*/
- closeTabs: function(tabbedPane, ids) {},
+ closeTabs(tabbedPane, ids) {},
/**
* @param {string} tabId
* @param {!UI.ContextMenu} contextMenu
*/
- onContextMenu: function(tabId, contextMenu) {}
+ onContextMenu(tabId, contextMenu) {}
};

Powered by Google App Engine
This is Rietveld 408576698