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

Unified Diff: third_party/WebKit/Source/devtools/front_end/devices/DevicesView.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/devices/DevicesView.js
diff --git a/third_party/WebKit/Source/devtools/front_end/devices/DevicesView.js b/third_party/WebKit/Source/devtools/front_end/devices/DevicesView.js
index 24c9dd3f6e062765bce74476ed6f5631aafd37f4..1cd39a56bfd80601343772f1a0023771fb2968ff 100644
--- a/third_party/WebKit/Source/devtools/front_end/devices/DevicesView.js
+++ b/third_party/WebKit/Source/devtools/front_end/devices/DevicesView.js
@@ -46,7 +46,7 @@ WebInspector.DevicesView = function()
this.contentElement.tabIndex = 0;
this.setDefaultFocusedElement(this.contentElement);
-}
+};
WebInspector.DevicesView.prototype = {
/**
@@ -188,7 +188,7 @@ WebInspector.DevicesView.prototype = {
},
__proto__: WebInspector.VBox.prototype
-}
+};
/**
* @return {!WebInspector.DevicesView}
@@ -198,7 +198,7 @@ WebInspector.DevicesView._instance = function()
if (!WebInspector.DevicesView._instanceObject)
WebInspector.DevicesView._instanceObject = new WebInspector.DevicesView();
return WebInspector.DevicesView._instanceObject;
-}
+};
/**
@@ -247,7 +247,7 @@ WebInspector.DevicesView.DiscoveryView = function()
/** @type {!Array<!Adb.PortForwardingRule>} */
this._portForwardingConfig = [];
-}
+};
WebInspector.DevicesView.DiscoveryView.prototype = {
_addRuleButtonClicked: function()
@@ -399,7 +399,7 @@ WebInspector.DevicesView.DiscoveryView.prototype = {
},
__proto__: WebInspector.VBox.prototype
-}
+};
/**
@@ -429,7 +429,7 @@ WebInspector.DevicesView.DeviceView = function()
this._browserById = new Map();
this._device = null;
-}
+};
/** @typedef {!{browser: ?Adb.Browser, element: !Element, title: !Element, pages: !Element, viewMore: !Element, newTab: !Element, pageSections: !Map<string, !WebInspector.DevicesView.PageSection>}} */
WebInspector.DevicesView.BrowserSection;
@@ -693,4 +693,4 @@ WebInspector.DevicesView.DeviceView.prototype = {
},
__proto__: WebInspector.VBox.prototype
-}
+};

Powered by Google App Engine
This is Rietveld 408576698