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

Unified Diff: third_party/WebKit/Source/devtools/front_end/main/RenderingOptions.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/main/RenderingOptions.js
diff --git a/third_party/WebKit/Source/devtools/front_end/main/RenderingOptions.js b/third_party/WebKit/Source/devtools/front_end/main/RenderingOptions.js
index 35d99109b98cfd99cdae573671c3c26c5d70bb9e..f909785db92d7893b3cd91f85b03ca5e99746566 100644
--- a/third_party/WebKit/Source/devtools/front_end/main/RenderingOptions.js
+++ b/third_party/WebKit/Source/devtools/front_end/main/RenderingOptions.js
@@ -83,7 +83,7 @@ WebInspector.RenderingOptionsView = function()
this._mediaSelect.disabled = true;
WebInspector.targetManager.observeTargets(this, WebInspector.Target.Capability.Browser);
-}
+};
WebInspector.RenderingOptionsView.prototype = {
/**
@@ -154,7 +154,7 @@ WebInspector.RenderingOptionsView.prototype = {
},
__proto__: WebInspector.VBox.prototype
-}
+};
/**
* @return {!WebInspector.RenderingOptionsView}
@@ -164,4 +164,4 @@ WebInspector.RenderingOptionsView.instance = function()
if (!WebInspector.RenderingOptionsView._instanceObject)
WebInspector.RenderingOptionsView._instanceObject = new WebInspector.RenderingOptionsView();
return WebInspector.RenderingOptionsView._instanceObject;
-}
+};

Powered by Google App Engine
This is Rietveld 408576698