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

Unified Diff: chrome/browser/resources/file_manager/js/default_action_dialog.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
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/js/directory_contents.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/file_manager/js/default_action_dialog.js
diff --git a/chrome/browser/resources/file_manager/js/default_action_dialog.js b/chrome/browser/resources/file_manager/js/default_action_dialog.js
index 3f4fc7a52ae8ae0ed65bd8f50f7abfd72d128e78..7e68082221180a1845e474a6167b72de0bc020d6 100644
--- a/chrome/browser/resources/file_manager/js/default_action_dialog.js
+++ b/chrome/browser/resources/file_manager/js/default_action_dialog.js
@@ -41,7 +41,7 @@ cr.define('cr.filebrowser', function() {
// closure here.
this.list_.itemConstructor = function(item) {
return self.renderItem(item);
- }
+ };
}
DefaultActionDialog.prototype = {
@@ -123,7 +123,7 @@ cr.define('cr.filebrowser', function() {
this.hide();
if (this.onOk_)
this.onOk_(this.dataModel_.item(index).task);
- }
+ };
/**
* Closes dialog and invokes callback with currently-selected item.
« no previous file with comments | « no previous file | chrome/browser/resources/file_manager/js/directory_contents.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698