Chromium Code Reviews| Index: chrome/common/extensions/chrome_manifest_handlers.cc |
| diff --git a/chrome/common/extensions/chrome_manifest_handlers.cc b/chrome/common/extensions/chrome_manifest_handlers.cc |
| index cad46378f12329ea80c62923bb32560a94cd46ec..66a88d827c11350c03597031c65544835e82b7b7 100644 |
| --- a/chrome/common/extensions/chrome_manifest_handlers.cc |
| +++ b/chrome/common/extensions/chrome_manifest_handlers.cc |
| @@ -15,11 +15,11 @@ |
| #if defined(OS_CHROMEOS) |
| #include "chrome/common/extensions/api/input_ime/input_components_handler.h" |
| #endif |
| -#include "chrome/common/extensions/api/managed_mode_private/managed_mode_handler.h" |
| #include "chrome/common/extensions/api/omnibox/omnibox_handler.h" |
| #include "chrome/common/extensions/api/plugins/plugins_handler.h" |
| #include "chrome/common/extensions/api/speech/tts_engine_manifest_handler.h" |
| #include "chrome/common/extensions/api/spellcheck/spellcheck_handler.h" |
| +#include "chrome/common/extensions/api/supervised_user_private/supervised_user_handler.h" |
| #include "chrome/common/extensions/api/system_indicator/system_indicator_handler.h" |
| #include "chrome/common/extensions/api/url_handlers/url_handlers_parser.h" |
| #include "chrome/common/extensions/manifest_handlers/app_isolation_info.h" |
| @@ -58,7 +58,7 @@ void RegisterChromeManifestHandlers() { |
| #if defined(OS_CHROMEOS) |
| (new InputComponentsHandler)->Register(); |
| #endif |
| - (new ManagedModeHandler)->Register(); |
| + (new SupervisedUserHandler)->Register(); |
|
Bernhard Bauer
2014/06/24 09:58:59
Move down please, so the handlers stay sorted.
Marc Treib
2014/06/24 10:03:08
Damn, apparently I'm really bad with the alphabet!
Bernhard Bauer
2014/06/24 10:15:37
In the words of a wise person: C is for Cookie, th
|
| (new MimeTypesHandlerParser)->Register(); |
| (new MinimumChromeVersionChecker)->Register(); |
| (new NaClModulesHandler)->Register(); |