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

Unified Diff: chrome/browser/extensions/extension_keybinding_registry.cc

Issue 23744004: Move the rest of extension_manifest_constants to top-level extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Latest master Created 7 years, 3 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/extensions/extension_keybinding_registry.cc
diff --git a/chrome/browser/extensions/extension_keybinding_registry.cc b/chrome/browser/extensions/extension_keybinding_registry.cc
index 4a87ddd7b979d973fbe65aa169c1bddb39cf659d..43ad281e21cc895bb49564a39179c0040a214a04 100644
--- a/chrome/browser/extensions/extension_keybinding_registry.cc
+++ b/chrome/browser/extensions/extension_keybinding_registry.cc
@@ -11,8 +11,8 @@
#include "chrome/browser/extensions/extension_service.h"
#include "chrome/browser/extensions/extension_system.h"
#include "chrome/browser/profiles/profile.h"
-#include "chrome/common/extensions/extension_manifest_constants.h"
#include "chrome/common/extensions/extension_set.h"
+#include "extensions/common/manifest_constants.h"
namespace extensions {
@@ -49,9 +49,9 @@ void ExtensionKeybindingRegistry::Init() {
bool ExtensionKeybindingRegistry::ShouldIgnoreCommand(
const std::string& command) const {
- return command == extension_manifest_values::kPageActionCommandEvent ||
- command == extension_manifest_values::kBrowserActionCommandEvent ||
- command == extension_manifest_values::kScriptBadgeCommandEvent;
+ return command == manifest_values::kPageActionCommandEvent ||
+ command == manifest_values::kBrowserActionCommandEvent ||
+ command == manifest_values::kScriptBadgeCommandEvent;
}
void ExtensionKeybindingRegistry::CommandExecuted(
« no previous file with comments | « chrome/browser/extensions/extension_browsertest.cc ('k') | chrome/browser/extensions/extension_protocols_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698