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

Unified Diff: third_party/WebKit/Source/devtools/front_end/host/UserMetrics.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/host/UserMetrics.js
diff --git a/third_party/WebKit/Source/devtools/front_end/host/UserMetrics.js b/third_party/WebKit/Source/devtools/front_end/host/UserMetrics.js
index c45c777b3e3cd251b306f8c7b686977a169ecfee..042b444b56dfc65fa02ad3b3a7106224a976a4ed 100644
--- a/third_party/WebKit/Source/devtools/front_end/host/UserMetrics.js
+++ b/third_party/WebKit/Source/devtools/front_end/host/UserMetrics.js
@@ -33,7 +33,7 @@
*/
WebInspector.UserMetrics = function()
{
-}
+};
// Codes below are used to collect UMA histograms in the Chromium port.
// Do not change the values below, additional actions are needed on the Chromium side
@@ -58,7 +58,7 @@ WebInspector.UserMetrics.Action = {
CommandEvaluatedInConsolePanel: 15,
DOMPropertiesExpanded: 16,
ResizedViewInResponsiveMode: 17
-}
+};
WebInspector.UserMetrics._PanelCodes = {
elements: 1,
@@ -77,7 +77,7 @@ WebInspector.UserMetrics._PanelCodes = {
"drawer-sensors": 14,
"drawer-sources.search": 15,
security: 16
-}
+};
WebInspector.UserMetrics.prototype = {
/**
@@ -106,7 +106,7 @@ WebInspector.UserMetrics.prototype = {
var size = Object.keys(WebInspector.UserMetrics.Action).length + 1;
InspectorFrontendHost.recordEnumeratedHistogram("DevTools.ActionTaken", action, size);
}
-}
+};
/** @type {!WebInspector.UserMetrics} */
WebInspector.userMetrics = new WebInspector.UserMetrics();

Powered by Google App Engine
This is Rietveld 408576698