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

Unified Diff: third_party/WebKit/Source/devtools/front_end/bindings/FileUtils.js

Issue 2153703003: [Devtools] Code cleanup - ensure no double-semicolons (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 c97192adc8c2c5702f9f4c3db15115756c97ca40..9fb9bb421f78648a1cddf390ba09980d50805dd7 100644
--- a/third_party/WebKit/Source/devtools/front_end/bindings/FileUtils.js
+++ b/third_party/WebKit/Source/devtools/front_end/bindings/FileUtils.js
@@ -200,7 +200,7 @@ WebInspector.createFileSelectorElement = function(callback)
function onChange(event)
{
callback(fileSelectorElement.files[0]);
- };
+ }
return fileSelectorElement;
}

Powered by Google App Engine
This is Rietveld 408576698