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

Unified Diff: chrome/utility/chrome_content_utility_client.cc

Issue 22295002: Base infrastructure for Networking Private API on Windows and Mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Use using chromeos:: to avoid lengthy namespace prefixes. Created 7 years, 2 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/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..db4a5a76b80ad4d0e50cf266c173f71681c3b80f 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_WIN)
cbentzel 2013/10/16 12:51:36 Should this be OSX as well?
cbentzel 2013/10/16 13:09:26 Actually - it shouldn't be for run-time issues sin
mef 2013/10/17 02:33:25 So, I leave it OS_WIN only for now, right?
+ handlers_.push_back(new NetworkingPrivateHandler());
+#endif // OS_WIN
+
#if defined(ENABLE_MDNS)
if (CommandLine::ForCurrentProcess()->HasSwitch(
switches::kUtilityProcessEnableMDns)) {

Powered by Google App Engine
This is Rietveld 408576698