| 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 3cc0d30c792ce8bd9297edf6b23b1412c8eecf5d..8eccbd1b450f9ce636f8b6542336b551776d49e8 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"
|
| @@ -87,6 +88,10 @@ ChromeContentUtilityClient::ChromeContentUtilityClient() {
|
| handlers_.push_back(new ProfileImportHandler());
|
| #endif // OS_ANDROID
|
|
|
| +#if defined(OS_WIN)
|
| + handlers_.push_back(new NetworkingPrivateHandler());
|
| +#endif // OS_WIN
|
| +
|
| #if defined(ENABLE_MDNS)
|
| if (CommandLine::ForCurrentProcess()->HasSwitch(
|
| switches::kUtilityProcessEnableMDns)) {
|
|
|