Index: extensions/common/common_manifest_handlers.cc |
diff --git a/extensions/common/common_manifest_handlers.cc b/extensions/common/common_manifest_handlers.cc |
index b624680dac6c682c74eacc1c9246cf5948a49ebc..94c24cedaff9782a4cfbc5f9f59067135c7ef362 100644 |
--- a/extensions/common/common_manifest_handlers.cc |
+++ b/extensions/common/common_manifest_handlers.cc |
@@ -16,6 +16,7 @@ |
#include "extensions/common/manifest_handlers/kiosk_mode_info.h" |
#include "extensions/common/manifest_handlers/launcher_page_info.h" |
#include "extensions/common/manifest_handlers/nacl_modules_handler.h" |
+#include "extensions/common/manifest_handlers/oauth2_manifest_handler.h" |
#include "extensions/common/manifest_handlers/offline_enabled_info.h" |
#include "extensions/common/manifest_handlers/sandboxed_page_info.h" |
#include "extensions/common/manifest_handlers/shared_module_info.h" |
@@ -40,6 +41,7 @@ void RegisterCommonManifestHandlers() { |
#if !defined(DISABLE_NACL) |
(new NaClModulesHandler)->Register(); |
#endif |
+ (new OAuth2ManifestHandler)->Register(); |
(new OfflineEnabledHandler)->Register(); |
(new SandboxedPageHandler)->Register(); |
(new SharedModuleHandler)->Register(); |