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

Unified Diff: chrome/utility/chrome_content_utility_client.cc

Issue 419523006: Experimentally isolate GetOpenFileName in a utility process. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 6 years, 5 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 c7d189f05bcf6b3b5ffd7a594ec88c4b75232f7a..e2413f864945a4583ee54660193549e2287c1e80 100644
--- a/chrome/utility/chrome_content_utility_client.cc
+++ b/chrome/utility/chrome_content_utility_client.cc
@@ -27,6 +27,10 @@
#include "chrome/utility/profile_import_handler.h"
#endif
+#if defined(OS_WIN)
+#include "chrome/utility/shell_handler_win.h"
+#endif
+
#if defined(ENABLE_EXTENSIONS)
#include "chrome/common/extensions/chrome_utility_extensions_messages.h"
#include "chrome/utility/extensions/extensions_handler.h"
@@ -87,6 +91,10 @@ ChromeContentUtilityClient::ChromeContentUtilityClient()
handlers_.push_back(new local_discovery::ServiceDiscoveryMessageHandler());
}
#endif
+
+#if defined(OS_WIN)
+ handlers_.push_back(new ShellHandler());
+#endif
}
ChromeContentUtilityClient::~ChromeContentUtilityClient() {

Powered by Google App Engine
This is Rietveld 408576698