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

Unified Diff: third_party/WebKit/Source/devtools/front_end/common/Console.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/common/Console.js
diff --git a/third_party/WebKit/Source/devtools/front_end/common/Console.js b/third_party/WebKit/Source/devtools/front_end/common/Console.js
index df2f0c32eca72969cce514f055456b26b60d7d7f..3b2921d3e8655e280521b24b78176c629a4402c3 100644
--- a/third_party/WebKit/Source/devtools/front_end/common/Console.js
+++ b/third_party/WebKit/Source/devtools/front_end/common/Console.js
@@ -10,12 +10,12 @@ WebInspector.Console = function()
{
/** @type {!Array.<!WebInspector.Console.Message>} */
this._messages = [];
-}
+};
/** @enum {symbol} */
WebInspector.Console.Events = {
MessageAdded: Symbol("messageAdded")
-}
+};
/**
* @enum {string}
@@ -24,7 +24,7 @@ WebInspector.Console.MessageLevel = {
Log: "log",
Warning: "warning",
Error: "error"
-}
+};
/**
* @constructor
@@ -39,7 +39,7 @@ WebInspector.Console.Message = function(text, level, timestamp, show)
this.level = level;
this.timestamp = (typeof timestamp === "number") ? timestamp : Date.now();
this.show = show;
-}
+};
WebInspector.Console.prototype = {
/**
@@ -100,6 +100,6 @@ WebInspector.Console.prototype = {
},
__proto__: WebInspector.Object.prototype
-}
+};
WebInspector.console = new WebInspector.Console();

Powered by Google App Engine
This is Rietveld 408576698