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

Unified Diff: chrome/common/extensions/extension_test_util.cc

Issue 22794012: Rename extension_manifest_keys namespace to extensions::manifest_keys. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 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/common/extensions/extension_test_util.cc
diff --git a/chrome/common/extensions/extension_test_util.cc b/chrome/common/extensions/extension_test_util.cc
index 02e9b22e4554ac5d91409fafef057e0c2e1b44f0..a4e66fbe8a9f7faa3f84b8c5a2b80658d7eb48f9 100644
--- a/chrome/common/extensions/extension_test_util.cc
+++ b/chrome/common/extensions/extension_test_util.cc
@@ -11,7 +11,7 @@
#include "chrome/common/chrome_paths.h"
#include "chrome/common/extensions/extension.h"
#include "chrome/common/extensions/extension_builder.h"
-#include "chrome/common/extensions/extension_manifest_constants.h"
+#include "extensions/common/manifest_constants.h"
#include "testing/gtest/include/gtest/gtest.h"
using extensions::DictionaryBuilder;
@@ -46,8 +46,8 @@ namespace extension_test_util {
scoped_refptr<Extension> CreateExtensionWithID(std::string id) {
base::DictionaryValue values;
- values.SetString(extension_manifest_keys::kName, "test");
- values.SetString(extension_manifest_keys::kVersion, "0.1");
+ values.SetString(extensions::manifest_keys::kName, "test");
+ values.SetString(extensions::manifest_keys::kVersion, "0.1");
std::string error;
return Extension::Create(base::FilePath(), extensions::Manifest::INTERNAL,
values, Extension::NO_FLAGS, id, &error);
« no previous file with comments | « chrome/common/extensions/extension_manifest_constants.cc ('k') | chrome/common/extensions/incognito_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698