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

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

Issue 13779006: Fixed gear menu navigation using keyboard. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 7 years, 8 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/file_manager_commands.js
diff --git a/chrome/browser/resources/file_manager/js/file_manager_commands.js b/chrome/browser/resources/file_manager/js/file_manager_commands.js
index 8fa52d82a86c995c4e19ec548658c9301359361e..722133336e404534eee9590b3d16372082bc8eed 100644
--- a/chrome/browser/resources/file_manager/js/file_manager_commands.js
+++ b/chrome/browser/resources/file_manager/js/file_manager_commands.js
@@ -330,7 +330,7 @@ Commands.driveClearCacheCommand = {
execute: function() {
chrome.fileBrowserPrivate.clearDriveCache();
},
- canExecute: CommandUtil.canExecuteVisibleOnDriveOnly
+ canExecute: CommandUtil.canExecuteEnabledOnDriveOnly
};
/**
@@ -340,7 +340,7 @@ Commands.driveReloadCommand = {
execute: function() {
chrome.fileBrowserPrivate.reloadDrive();
},
- canExecute: CommandUtil.canExecuteVisibleOnDriveOnly
+ canExecute: CommandUtil.canExecuteEnabledOnDriveOnly
};
/**

Powered by Google App Engine
This is Rietveld 408576698