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

Unified Diff: chrome/browser/ui/webui/extensions/command_handler.cc

Issue 10824307: Port Extension Commands to Mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 4 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/ui/webui/extensions/command_handler.cc
===================================================================
--- chrome/browser/ui/webui/extensions/command_handler.cc (revision 151684)
+++ chrome/browser/ui/webui/extensions/command_handler.cc (working copy)
@@ -83,13 +83,9 @@
}
void CommandHandler::HandleSetShortcutHandlingSuspended(const ListValue* args) {
-#if !defined(OS_MACOSX)
bool suspended;
if (args->GetBoolean(0, &suspended))
ExtensionKeybindingRegistry::SetShortcutHandlingSuspended(suspended);
-#else
- NOTIMPLEMENTED();
-#endif
}
void CommandHandler::GetAllCommands(base::DictionaryValue* commands) {

Powered by Google App Engine
This is Rietveld 408576698