Chromium Code Reviews| Index: chrome/utility/chrome_content_utility_client.cc |
| diff --git a/chrome/utility/chrome_content_utility_client.cc b/chrome/utility/chrome_content_utility_client.cc |
| index b8f83f05c01132a69070929806b3baef7ea0d665..a5dcee6cf317377f4132b6dfa28d90c513cbadfa 100644 |
| --- a/chrome/utility/chrome_content_utility_client.cc |
| +++ b/chrome/utility/chrome_content_utility_client.cc |
| @@ -20,6 +20,7 @@ |
| #include "chrome/common/extensions/update_manifest.h" |
| #include "chrome/common/safe_browsing/zip_analyzer.h" |
| #include "chrome/utility/extensions/unpacker.h" |
| +#include "chrome/utility/networking_private_handler.h" |
| #include "chrome/utility/profile_import_handler.h" |
| #include "chrome/utility/web_resource_unpacker.h" |
| #include "content/public/child/image_decoder_utils.h" |
| @@ -82,6 +83,10 @@ ChromeContentUtilityClient::ChromeContentUtilityClient() { |
| handlers_.push_back(new ProfileImportHandler()); |
| #endif // OS_ANDROID |
| +#if !defined(OS_ANDROID) |
| + handlers_.push_back(new NetworkingPrivateHandler()); |
|
stevenjb
2013/09/25 19:09:15
I know the code for this is not OS specific, but d
mef
2013/10/08 21:46:26
Done.
|
| +#endif // OS_ANDROID |
| + |
| #if defined(ENABLE_MDNS) |
| if (CommandLine::ForCurrentProcess()->HasSwitch( |
| switches::kUtilityProcessEnableMDns)) { |