Index: third_party/WebKit/Source/devtools/front_end/bindings/PresentationConsoleMessageHelper.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/bindings/PresentationConsoleMessageHelper.js b/third_party/WebKit/Source/devtools/front_end/bindings/PresentationConsoleMessageHelper.js |
index 243c155357e296815d346d11bfff3f2640f4654c..88d3133d886a80b33db8300cf4a66dc368e275d0 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/bindings/PresentationConsoleMessageHelper.js |
+++ b/third_party/WebKit/Source/devtools/front_end/bindings/PresentationConsoleMessageHelper.js |
@@ -50,7 +50,7 @@ WebInspector.PresentationConsoleMessageHelper = function(workspace) |
WebInspector.targetManager.addModelListener(WebInspector.DebuggerModel, WebInspector.DebuggerModel.Events.GlobalObjectCleared, this._debuggerReset, this); |
this._locationPool = new WebInspector.LiveLocationPool(); |
-} |
+}; |
WebInspector.PresentationConsoleMessageHelper.prototype = { |
/** |
@@ -159,7 +159,7 @@ WebInspector.PresentationConsoleMessageHelper.prototype = { |
{ |
this._consoleCleared(); |
} |
-} |
+}; |
/** |
* @constructor |
@@ -172,7 +172,7 @@ WebInspector.PresentationConsoleMessage = function(message, rawLocation, locatio |
this._text = message.messageText; |
this._level = message.level === WebInspector.ConsoleMessage.MessageLevel.Error ? WebInspector.UISourceCode.Message.Level.Error : WebInspector.UISourceCode.Message.Level.Warning; |
WebInspector.debuggerWorkspaceBinding.createLiveLocation(rawLocation, this._updateLocation.bind(this), locationPool); |
-} |
+}; |
WebInspector.PresentationConsoleMessage.prototype = { |
/** |
@@ -193,7 +193,7 @@ WebInspector.PresentationConsoleMessage.prototype = { |
if (this._uiMessage) |
this._uiMessage.remove(); |
} |
-} |
+}; |
/** @type {!WebInspector.PresentationConsoleMessageHelper} */ |
WebInspector.presentationConsoleMessageHelper; |