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

Unified Diff: third_party/WebKit/Source/devtools/front_end/emulation/TouchModel.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/TouchModel.js
diff --git a/third_party/WebKit/Source/devtools/front_end/emulation/TouchModel.js b/third_party/WebKit/Source/devtools/front_end/emulation/TouchModel.js
index b39ce97468595307fba47b88d3f923b0452cbce2..b30dbd998b54af4c732f8d0a0fc10c081ebede01 100644
--- a/third_party/WebKit/Source/devtools/front_end/emulation/TouchModel.js
+++ b/third_party/WebKit/Source/devtools/front_end/emulation/TouchModel.js
@@ -13,7 +13,7 @@ WebInspector.MultitargetTouchModel = function()
this._customTouchEnabled = false;
WebInspector.targetManager.observeTargets(this, WebInspector.Target.Capability.Browser);
-}
+};
WebInspector.MultitargetTouchModel._symbol = Symbol("MultitargetTouchModel.symbol");
@@ -132,7 +132,7 @@ WebInspector.MultitargetTouchModel.prototype = {
if (domModel)
domModel.removeEventListener(WebInspector.DOMModel.Events.InspectModeWillBeToggled, this._inspectModeToggled, this);
}
-}
+};
/** @type {?WebInspector.MultitargetTouchModel} */
@@ -146,4 +146,4 @@ WebInspector.MultitargetTouchModel.instance = function()
if (!WebInspector.MultitargetTouchModel._instance)
WebInspector.MultitargetTouchModel._instance = new WebInspector.MultitargetTouchModel();
return /** @type {!WebInspector.MultitargetTouchModel} */ (WebInspector.MultitargetTouchModel._instance);
-}
+};

Powered by Google App Engine
This is Rietveld 408576698