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

Unified Diff: Source/devtools/front_end/main/App.js

Issue 408853002: [DevTools] Make toolbar counters declarative. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 months 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: Source/devtools/front_end/main/App.js
diff --git a/Source/devtools/front_end/main/App.js b/Source/devtools/front_end/main/App.js
index ed9a8987cc0965318d886aa3acbc023b3214d970..dc3076990b21eede0f64d00858887f2cd57835e8 100644
--- a/Source/devtools/front_end/main/App.js
+++ b/Source/devtools/front_end/main/App.js
@@ -65,7 +65,7 @@ WebInspector.App.prototype = {
/**
* @constructor
- * @implements {WebInspector.StatusBarButton.Provider}
+ * @implements {WebInspector.StatusBarItem.Provider}
*/
WebInspector.App.EmulationButtonProvider = function()
{
@@ -73,9 +73,9 @@ WebInspector.App.EmulationButtonProvider = function()
WebInspector.App.EmulationButtonProvider.prototype = {
/**
- * @return {?WebInspector.StatusBarButton}
+ * @return {?WebInspector.StatusBarItem}
*/
- button: function()
+ item: function()
{
if (!(WebInspector.app instanceof WebInspector.App))
return null;

Powered by Google App Engine
This is Rietveld 408576698