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

Unified Diff: third_party/WebKit/Source/devtools/front_end/bindings/FileUtils.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/FileUtils.js
diff --git a/third_party/WebKit/Source/devtools/front_end/bindings/FileUtils.js b/third_party/WebKit/Source/devtools/front_end/bindings/FileUtils.js
index 35feb2f28cbd462c782e966e57bfff6a38bb62da..0fc473edc9a5be4998884f6cd223208022dc94c8 100644
--- a/third_party/WebKit/Source/devtools/front_end/bindings/FileUtils.js
+++ b/third_party/WebKit/Source/devtools/front_end/bindings/FileUtils.js
@@ -33,7 +33,7 @@
*/
WebInspector.OutputStreamDelegate = function()
{
-}
+};
WebInspector.OutputStreamDelegate.prototype = {
onTransferStarted: function() { },
@@ -50,14 +50,14 @@ WebInspector.OutputStreamDelegate.prototype = {
* @param {!Event} event
*/
onError: function(reader, event) { },
-}
+};
/**
* @interface
*/
WebInspector.ChunkedReader = function()
{
-}
+};
WebInspector.ChunkedReader.prototype = {
/**
@@ -76,7 +76,7 @@ WebInspector.ChunkedReader.prototype = {
fileName: function() { },
cancel: function() { }
-}
+};
/**
* @constructor
@@ -94,7 +94,7 @@ WebInspector.ChunkedFileReader = function(file, chunkSize, delegate)
this._delegate = delegate;
this._decoder = new TextDecoder();
this._isCanceled = false;
-}
+};
WebInspector.ChunkedFileReader.prototype = {
/**
@@ -184,7 +184,7 @@ WebInspector.ChunkedFileReader.prototype = {
var nextPart = this._file.slice(chunkStart, chunkEnd);
this._reader.readAsArrayBuffer(nextPart);
}
-}
+};
/**
* @param {function(!File)} callback
@@ -202,7 +202,7 @@ WebInspector.createFileSelectorElement = function(callback)
callback(fileSelectorElement.files[0]);
}
return fileSelectorElement;
-}
+};
/**
* @constructor
@@ -210,7 +210,7 @@ WebInspector.createFileSelectorElement = function(callback)
*/
WebInspector.FileOutputStream = function()
{
-}
+};
WebInspector.FileOutputStream.prototype = {
/**
@@ -276,4 +276,4 @@ WebInspector.FileOutputStream.prototype = {
}
}
}
-}
+};

Powered by Google App Engine
This is Rietveld 408576698