Index: content/renderer/render_view_impl.cc |
diff --git a/content/renderer/render_view_impl.cc b/content/renderer/render_view_impl.cc |
index 70f11bda9b3b92550ea01519e6380e66d7d04345..0631c3ea35793b729d716446ad6c59b1dd7a9ace 100644 |
--- a/content/renderer/render_view_impl.cc |
+++ b/content/renderer/render_view_impl.cc |
@@ -98,7 +98,6 @@ |
#include "net/base/escape.h" |
#include "net/base/net_errors.h" |
#include "net/http/http_util.h" |
-#include "ppapi/c/private/ppb_flash_net_connector.h" |
#include "third_party/WebKit/Source/WebKit/chromium/public/WebAccessibilityObject.h" |
#include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h" |
#include "third_party/WebKit/Source/WebKit/chromium/public/WebDocument.h" |
@@ -826,9 +825,6 @@ bool RenderViewImpl::OnMessageReceived(const IPC::Message& message) { |
#endif |
IPC_MESSAGE_HANDLER(ViewMsg_ContextMenuClosed, OnContextMenuClosed) |
// TODO(viettrungluu): Move to a separate message filter. |
-#if defined(ENABLE_FLAPPER_HACKS) |
- IPC_MESSAGE_HANDLER(PepperMsg_ConnectTcpACK, OnConnectTcpACK) |
-#endif |
#if defined(OS_MACOSX) |
IPC_MESSAGE_HANDLER(ViewMsg_SetInLiveResize, OnSetInLiveResize) |
#endif |
@@ -5167,20 +5163,6 @@ void RenderViewImpl::OnSelectPopupMenuItem(int selected_index) { |
} |
#endif |
-#if defined(ENABLE_FLAPPER_HACKS) |
-void RenderViewImpl::OnConnectTcpACK( |
- int request_id, |
- IPC::PlatformFileForTransit socket_for_transit, |
- const PP_NetAddress_Private& local_addr, |
- const PP_NetAddress_Private& remote_addr) { |
- pepper_delegate_.OnConnectTcpACK( |
- request_id, |
- IPC::PlatformFileForTransitToPlatformFile(socket_for_transit), |
- local_addr, |
- remote_addr); |
-} |
-#endif |
- |
void RenderViewImpl::OnContextMenuClosed( |
const content::CustomContextMenuContext& custom_context) { |
if (custom_context.is_pepper_menu) |