| Index: chrome/browser/extensions/extension_commands_global_registry.cc
|
| diff --git a/chrome/browser/extensions/extension_commands_global_registry.cc b/chrome/browser/extensions/extension_commands_global_registry.cc
|
| index c98051c45e07ed38b3c0e47203582271a63bc6e5..f43caa1dc4d7c01517d99f5e09ce3708d4b3a6e1 100644
|
| --- a/chrome/browser/extensions/extension_commands_global_registry.cc
|
| +++ b/chrome/browser/extensions/extension_commands_global_registry.cc
|
| @@ -83,10 +83,6 @@ void ExtensionCommandsGlobalRegistry::AddExtensionKeybindings(
|
| continue;
|
| const ui::Accelerator& accelerator = iter->second.accelerator();
|
|
|
| - VLOG(0) << "Adding global keybinding for " << extension->name().c_str()
|
| - << " " << command_name.c_str()
|
| - << " key: " << accelerator.GetShortcutText();
|
| -
|
| if (!IsAcceleratorRegistered(accelerator)) {
|
| if (!GlobalShortcutListener::GetInstance()->RegisterAccelerator(
|
| accelerator, this))
|
| @@ -100,8 +96,6 @@ void ExtensionCommandsGlobalRegistry::AddExtensionKeybindings(
|
| void ExtensionCommandsGlobalRegistry::RemoveExtensionKeybindingImpl(
|
| const ui::Accelerator& accelerator,
|
| const std::string& command_name) {
|
| - VLOG(0) << "Removing keybinding for " << command_name.c_str();
|
| -
|
| GlobalShortcutListener::GetInstance()->UnregisterAccelerator(
|
| accelerator, this);
|
| }
|
|
|