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

Unified Diff: third_party/WebKit/Source/devtools/front_end/ui/SettingsUI.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/ui/SettingsUI.js
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/SettingsUI.js b/third_party/WebKit/Source/devtools/front_end/ui/SettingsUI.js
index 452dd4a0bca894486813aa70803f99d61ab08c7a..985e84b275fa816f5441d535844307667214d93a 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/SettingsUI.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/SettingsUI.js
@@ -28,7 +28,7 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-WebInspector.SettingsUI = {}
+WebInspector.SettingsUI = {};
/**
* @param {string} name
@@ -53,7 +53,7 @@ WebInspector.SettingsUI.createSettingCheckbox = function(name, setting, omitPara
var p = createElement("p");
p.appendChild(label);
return p;
-}
+};
/**
* @param {!Element} input
@@ -75,7 +75,7 @@ WebInspector.SettingsUI.bindCheckbox = function(input, setting)
setting.set(input.checked);
}
input.addEventListener("change", inputChanged, false);
-}
+};
/**
* @param {string} name
@@ -89,7 +89,7 @@ WebInspector.SettingsUI.createCustomSetting = function(name, element)
fieldsetElement.createChild("label").textContent = name;
fieldsetElement.appendChild(element);
return p;
-}
+};
/**
* @param {!WebInspector.Setting} setting
@@ -106,18 +106,18 @@ WebInspector.SettingsUI.createSettingFieldset = function(setting)
{
fieldset.disabled = !setting.get();
}
-}
+};
/**
* @interface
*/
WebInspector.SettingUI = function()
{
-}
+};
WebInspector.SettingUI.prototype = {
/**
* @return {?Element}
*/
settingElement: function() { }
-}
+};

Powered by Google App Engine
This is Rietveld 408576698