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

Unified Diff: third_party/WebKit/Source/devtools/front_end/components/DataSaverInfobar.js

Issue 2440953003: DevTools: use semicolons after each statement. (Closed)
Patch Set: rebaseline Created 4 years, 2 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: third_party/WebKit/Source/devtools/front_end/components/DataSaverInfobar.js
diff --git a/third_party/WebKit/Source/devtools/front_end/components/DataSaverInfobar.js b/third_party/WebKit/Source/devtools/front_end/components/DataSaverInfobar.js
index c4e98ab5d6b850240b5f08f0fdb966d3a99623a1..d240929a9629c394fc7471482e5bb2235af2ce94 100644
--- a/third_party/WebKit/Source/devtools/front_end/components/DataSaverInfobar.js
+++ b/third_party/WebKit/Source/devtools/front_end/components/DataSaverInfobar.js
@@ -13,7 +13,7 @@ WebInspector.DataSaverInfobar = function()
message.createTextChild("More information about ");
message.appendChild(WebInspector.linkifyURLAsNode("https://support.google.com/chrome/answer/2392284?hl=en", "Chrome Data Saver", undefined, true));
message.createTextChild(".");
-}
+};
WebInspector.DataSaverInfobar._infobars = [];
@@ -27,7 +27,7 @@ WebInspector.DataSaverInfobar.maybeShowInPanel = function(panel)
WebInspector.DataSaverInfobar._infobars.push(infobar);
panel.showInfobar(infobar);
}
-}
+};
WebInspector.DataSaverInfobar.prototype = {
/**
@@ -40,4 +40,4 @@ WebInspector.DataSaverInfobar.prototype = {
},
__proto__: WebInspector.Infobar.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698