| 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);
|
|
|