| Index: content/browser/renderer_host/render_message_filter.cc
|
| diff --git a/content/browser/renderer_host/render_message_filter.cc b/content/browser/renderer_host/render_message_filter.cc
|
| index 6fefd70d4cde34e8804bdf6303f92157cbe4a1a3..b7185db502b295fab18100584c6cfd6e3e502c63 100644
|
| --- a/content/browser/renderer_host/render_message_filter.cc
|
| +++ b/content/browser/renderer_host/render_message_filter.cc
|
| @@ -19,7 +19,6 @@
|
| #include "chrome/browser/browser_process.h"
|
| #include "chrome/browser/browser_thread.h"
|
| #include "chrome/browser/child_process_security_policy.h"
|
| -#include "chrome/browser/chrome_plugin_browsing_context.h"
|
| #include "chrome/browser/clipboard_dispatcher.h"
|
| #include "chrome/browser/download/download_types.h"
|
| #include "chrome/browser/extensions/extension_message_service.h"
|
| @@ -441,8 +440,6 @@ bool RenderMessageFilter::OnMessageReceived(const IPC::Message& message,
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_CheckNotificationPermission,
|
| OnCheckNotificationPermission)
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_RevealFolderInOS, OnRevealFolderInOS)
|
| - IPC_MESSAGE_HANDLER(ViewHostMsg_GetCPBrowsingContext,
|
| - OnGetCPBrowsingContext)
|
| #if defined(OS_WIN)
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_DuplicateSection, OnDuplicateSection)
|
| #endif
|
| @@ -980,13 +977,6 @@ void RenderMessageFilter::OnCheckNotificationPermission(
|
| *result = notification_prefs_->HasPermission(source_url.GetOrigin());
|
| }
|
|
|
| -void RenderMessageFilter::OnGetCPBrowsingContext(uint32* context) {
|
| - // Always allocate a new context when a plugin requests one, since it needs to
|
| - // be unique for that plugin instance.
|
| - *context = CPBrowsingContextManager::GetInstance()->Allocate(
|
| - request_context_->GetURLRequestContext());
|
| -}
|
| -
|
| #if defined(OS_WIN)
|
| void RenderMessageFilter::OnDuplicateSection(
|
| base::SharedMemoryHandle renderer_handle,
|
|
|