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

Unified Diff: third_party/WebKit/Source/devtools/front_end/emulation/DeviceModeWrapper.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/emulation/DeviceModeWrapper.js
diff --git a/third_party/WebKit/Source/devtools/front_end/emulation/DeviceModeWrapper.js b/third_party/WebKit/Source/devtools/front_end/emulation/DeviceModeWrapper.js
index f1cfe7f1c79a44a681a1dcfb0718064c65a5a039..ad53fc7c92a24ed75c131f52453de625e2a60f73 100644
--- a/third_party/WebKit/Source/devtools/front_end/emulation/DeviceModeWrapper.js
+++ b/third_party/WebKit/Source/devtools/front_end/emulation/DeviceModeWrapper.js
@@ -18,7 +18,7 @@ WebInspector.DeviceModeWrapper = function(inspectedPagePlaceholder)
this._showDeviceModeSetting = WebInspector.settings.createSetting("emulation.showDeviceMode", false);
this._showDeviceModeSetting.addChangeListener(this._update.bind(this, false));
this._update(true);
-}
+};
/** @type {!WebInspector.DeviceModeWrapper} */
WebInspector.DeviceModeView._wrapperInstance;
@@ -67,7 +67,7 @@ WebInspector.DeviceModeWrapper.prototype = {
},
__proto__: WebInspector.VBox.prototype
-}
+};
/**
* @constructor
@@ -75,7 +75,7 @@ WebInspector.DeviceModeWrapper.prototype = {
*/
WebInspector.DeviceModeWrapper.ActionDelegate = function()
{
-}
+};
WebInspector.DeviceModeWrapper.ActionDelegate.prototype = {
/**
@@ -96,4 +96,4 @@ WebInspector.DeviceModeWrapper.ActionDelegate.prototype = {
}
return false;
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698