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); |
-} |
+}; |