Index: chrome/browser/utility_process_host.cc |
diff --git a/chrome/browser/utility_process_host.cc b/chrome/browser/utility_process_host.cc |
index 22495f8f9488eb042413e53387af36b66c76b5b9..1756d3e06e536f39b7b4271d623fdefe4ca241d2 100644 |
--- a/chrome/browser/utility_process_host.cc |
+++ b/chrome/browser/utility_process_host.cc |
@@ -165,6 +165,16 @@ void UtilityProcessHost::OnProcessCrashed() { |
NewRunnableMethod(client_.get(), &Client::OnProcessCrashed)); |
} |
+bool UtilityProcessHost::CanShutdown() { |
+ return true; |
+} |
+ |
+URLRequestContext* UtilityProcessHost::GetRequestContext( |
+ uint32 request_id, |
+ const ViewHostMsg_Resource_Request& request_data) { |
+ return NULL; |
+} |
+ |
void UtilityProcessHost::Client::OnMessageReceived( |
const IPC::Message& message) { |
IPC_BEGIN_MESSAGE_MAP(UtilityProcessHost, message) |