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

Unified Diff: chrome/browser/resources/file_manager/js/directory_contents.js

Issue 12211123: [Cleanup] Files.app: Add missing semi-colons after function declaration. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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: chrome/browser/resources/file_manager/js/directory_contents.js
diff --git a/chrome/browser/resources/file_manager/js/directory_contents.js b/chrome/browser/resources/file_manager/js/directory_contents.js
index 1b2a5e0837585264547f924f2cf43d67735badc8..a29c5d72c7e6b8d8c487b92f59b0ceccf17bfc26 100644
--- a/chrome/browser/resources/file_manager/js/directory_contents.js
+++ b/chrome/browser/resources/file_manager/js/directory_contents.js
@@ -382,7 +382,7 @@ DirectoryContentsBasic.prototype.createDirectory = function(
name, successCallback, errorCallback) {
var onSuccess = function(newEntry) {
this.prefetchMetadata([newEntry], function() {successCallback(newEntry);});
- }
+ };
this.entry_.getDirectory(name, {create: true, exclusive: true},
onSuccess.bind(this), errorCallback);

Powered by Google App Engine
This is Rietveld 408576698