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

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

Issue 11968032: Move 'theme' parsing out of Extension class (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: PrefProviderTest.Incognito fixed Created 7 years, 10 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/unpacker_unittest.cc
diff --git a/chrome/common/extensions/unpacker_unittest.cc b/chrome/common/extensions/unpacker_unittest.cc
index b6efe1077d9db48880f497e37ccc3b14d0cdce50..0da7eb0c2ab005184568e374fdee089b82fb9de4 100644
--- a/chrome/common/extensions/unpacker_unittest.cc
+++ b/chrome/common/extensions/unpacker_unittest.cc
@@ -10,6 +10,7 @@
#include "base/values.h"
#include "chrome/common/chrome_paths.h"
#include "chrome/common/extensions/api/i18n/default_locale_handler.h"
+#include "chrome/common/extensions/api/themes/theme_handler.h"
#include "chrome/common/extensions/extension.h"
#include "chrome/common/extensions/extension_constants.h"
#include "chrome/common/extensions/extension_manifest_constants.h"
@@ -37,6 +38,9 @@ public:
extensions::ManifestHandler::Register(
keys::kDefaultLocale,
make_linked_ptr(new extensions::DefaultLocaleHandler));
+ extensions::ManifestHandler::Register(
+ keys::kTheme,
+ make_linked_ptr(new extensions::ThemeHandler));
}
void SetupUnpacker(const std::string& crx_name) {

Powered by Google App Engine
This is Rietveld 408576698