| Index: chrome/common/extensions/manifest_tests/extension_manifests_initvalue_unittest.cc
|
| diff --git a/chrome/common/extensions/manifest_tests/extension_manifests_initvalue_unittest.cc b/chrome/common/extensions/manifest_tests/extension_manifests_initvalue_unittest.cc
|
| index eb537a10cfd8c9861efaadbe663009ea1c5ff389..21e643d769b453f3cf27c6b5950e29cfd939801d 100644
|
| --- a/chrome/common/extensions/manifest_tests/extension_manifests_initvalue_unittest.cc
|
| +++ b/chrome/common/extensions/manifest_tests/extension_manifests_initvalue_unittest.cc
|
| @@ -6,8 +6,10 @@
|
| #include "base/path_service.h"
|
| #include "base/utf_string_conversions.h"
|
| #include "chrome/common/chrome_paths.h"
|
| +#include "chrome/common/extensions/api/content_scripts/content_scripts_handler.h"
|
| #include "chrome/common/extensions/extension.h"
|
| #include "chrome/common/extensions/extension_manifest_constants.h"
|
| +#include "chrome/common/extensions/manifest_handler.h"
|
| #include "chrome/common/extensions/manifest_tests/extension_manifest_test.h"
|
| #include "chrome/common/extensions/manifest_url_handler.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| @@ -19,11 +21,15 @@
|
|
|
| namespace errors = extension_manifest_errors;
|
|
|
| +namespace extensions {
|
| +
|
| class InitValueManifestTest : public ExtensionManifestTest {
|
| virtual void SetUp() OVERRIDE {
|
| ExtensionManifestTest::SetUp();
|
| - extensions::ManifestHandler::Register(extension_manifest_keys::kOptionsPage,
|
| - new extensions::OptionsPageHandler);
|
| + ManifestHandler::Register(extension_manifest_keys::kOptionsPage,
|
| + new OptionsPageHandler);
|
| + ManifestHandler::Register(extension_manifest_keys::kContentScripts,
|
| + new ContentScriptsHandler);
|
| }
|
| };
|
|
|
| @@ -163,3 +169,5 @@ TEST_F(InitValueManifestTest, InitFromValueValidNameInRTL) {
|
| base::i18n::SetICUDefaultLocale(locale);
|
| #endif
|
| }
|
| +
|
| +} // namespace extensions
|
|
|