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

Unified Diff: third_party/WebKit/Source/devtools/front_end/common/OutputStream.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/OutputStream.js
diff --git a/third_party/WebKit/Source/devtools/front_end/common/OutputStream.js b/third_party/WebKit/Source/devtools/front_end/common/OutputStream.js
index f7e52b048144a8e6e25896ca66cd14fe0422aebe..b398a2945b7902fa025faebb18daa689b68d0b2b 100644
--- a/third_party/WebKit/Source/devtools/front_end/common/OutputStream.js
+++ b/third_party/WebKit/Source/devtools/front_end/common/OutputStream.js
@@ -7,7 +7,7 @@
*/
WebInspector.OutputStream = function()
{
-}
+};
WebInspector.OutputStream.prototype = {
/**
@@ -17,7 +17,7 @@ WebInspector.OutputStream.prototype = {
write: function(data, callback) { },
close: function() { }
-}
+};
/**
* @constructor
@@ -26,7 +26,7 @@ WebInspector.OutputStream.prototype = {
WebInspector.StringOutputStream = function()
{
this._data = "";
-}
+};
WebInspector.StringOutputStream.prototype = {
/**
@@ -53,4 +53,4 @@ WebInspector.StringOutputStream.prototype = {
{
return this._data;
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698