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

Unified Diff: third_party/WebKit/Source/devtools/front_end/bindings/PresentationConsoleMessageHelper.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/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;

Powered by Google App Engine
This is Rietveld 408576698