Index: chrome/browser/plugin_process_host.cc |
diff --git a/chrome/browser/plugin_process_host.cc b/chrome/browser/plugin_process_host.cc |
index c6ee524335f12cf3538be054773a77fdd341309c..ce10aa019f07f254a7bd61027806a4dce98a6eb8 100644 |
--- a/chrome/browser/plugin_process_host.cc |
+++ b/chrome/browser/plugin_process_host.cc |
@@ -348,7 +348,7 @@ void PluginProcessHost::OpenChannelToPlugin(Client* client) { |
void PluginProcessHost::OnGetCookies(uint32 request_context, |
const GURL& url, |
std::string* cookies) { |
- URLRequestContext* context = CPBrowsingContextManager::Instance()-> |
+ URLRequestContext* context = CPBrowsingContextManager::GetInstance()-> |
ToURLRequestContext(request_context); |
// TODO(mpcomplete): remove fallback case when Gears support is prevalent. |
if (!context) |
@@ -398,7 +398,8 @@ void PluginProcessHost::OnResolveProxyCompleted(IPC::Message* reply_msg, |
URLRequestContext* PluginProcessHost::GetRequestContext( |
uint32 request_id, |
const ViewHostMsg_Resource_Request& request_data) { |
- return CPBrowsingContextManager::Instance()->ToURLRequestContext(request_id); |
+ return CPBrowsingContextManager::GetInstance()->ToURLRequestContext( |
+ request_id); |
} |
void PluginProcessHost::RequestPluginChannel(Client* client) { |