| Index: content/browser/renderer_host/render_view_host.cc
|
| ===================================================================
|
| --- content/browser/renderer_host/render_view_host.cc (revision 80243)
|
| +++ content/browser/renderer_host/render_view_host.cc (working copy)
|
| @@ -16,7 +16,6 @@
|
| #include "base/utf_string_conversions.h"
|
| #include "base/values.h"
|
| #include "chrome/browser/dom_operation_notification_details.h"
|
| -#include "chrome/browser/extensions/extension_message_service.h"
|
| #include "chrome/browser/metrics/user_metrics.h"
|
| #include "chrome/browser/net/predictor_api.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| @@ -772,7 +771,6 @@
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_ShouldClose_ACK, OnMsgShouldCloseACK)
|
| IPC_MESSAGE_HANDLER(ExtensionHostMsg_Request, OnExtensionRequest)
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_SelectionChanged, OnMsgSelectionChanged)
|
| - IPC_MESSAGE_HANDLER(ExtensionHostMsg_PostMessage, OnExtensionPostMessage)
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_AccessibilityNotifications,
|
| OnAccessibilityNotifications)
|
| IPC_MESSAGE_HANDLER(ViewHostMsg_OnCSSInserted, OnCSSInserted)
|
| @@ -1501,14 +1499,6 @@
|
| Send(new ViewMsg_JavaScriptStressTestControl(routing_id(), cmd, param));
|
| }
|
|
|
| -void RenderViewHost::OnExtensionPostMessage(
|
| - int port_id, const std::string& message) {
|
| - if (process()->profile()->GetExtensionMessageService()) {
|
| - process()->profile()->GetExtensionMessageService()->
|
| - PostMessageFromRenderer(port_id, message);
|
| - }
|
| -}
|
| -
|
| void RenderViewHost::OnAccessibilityNotifications(
|
| const std::vector<ViewHostMsg_AccessibilityNotification_Params>& params) {
|
| if (view())
|
|
|