Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(118)

Unified Diff: content/renderer/render_view_impl.cc

Issue 8275012: Remove RemoteAccessClientFirewallTraversal policy and code paths. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Re-rebase Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/render_view_impl.h ('k') | ppapi/api/dev/ppb_query_policy_dev.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/render_view_impl.cc
diff --git a/content/renderer/render_view_impl.cc b/content/renderer/render_view_impl.cc
index b71be6392ee2d71c7fc73dbfd266b8bfb0a9d135..1c332a424771c4be19dba99f2364779bc0028bf9 100644
--- a/content/renderer/render_view_impl.cc
+++ b/content/renderer/render_view_impl.cc
@@ -664,8 +664,6 @@ bool RenderViewImpl::OnMessageReceived(const IPC::Message& message) {
#if defined(OS_MACOSX)
IPC_MESSAGE_HANDLER(ViewMsg_SetInLiveResize, OnSetInLiveResize)
#endif
- IPC_MESSAGE_HANDLER(ViewMsg_UpdateRemoteAccessClientFirewallTraversal,
- OnUpdateRemoteAccessClientFirewallTraversal)
IPC_MESSAGE_HANDLER(ViewMsg_SetHistoryLengthAndPrune,
OnSetHistoryLengthAndPrune)
IPC_MESSAGE_HANDLER(ViewMsg_EnableViewSourceMode, OnEnableViewSourceMode)
@@ -3688,11 +3686,6 @@ void RenderViewImpl::OnUpdateWebPreferences(const WebPreferences& prefs) {
webkit_preferences_.Apply(webview());
}
-void RenderViewImpl::OnUpdateRemoteAccessClientFirewallTraversal(
- const std::string& policy) {
- pepper_delegate_.PublishPolicy(policy);
-}
-
void RenderViewImpl::OnSetAltErrorPageURL(const GURL& url) {
alternate_error_page_url_ = url;
}
@@ -4217,10 +4210,6 @@ void RenderViewImpl::PpapiPluginCancelComposition() {
Send(new ViewHostMsg_ImeCompositionRangeChanged(routing_id(), range));
}
-void RenderViewImpl::RequestRemoteAccessClientFirewallTraversal() {
- Send(new ViewHostMsg_RequestRemoteAccessClientFirewallTraversal(routing_id_));
-}
-
void RenderViewImpl::OnImeSetComposition(
const string16& text,
const std::vector<WebKit::WebCompositionUnderline>& underlines,
« no previous file with comments | « content/renderer/render_view_impl.h ('k') | ppapi/api/dev/ppb_query_policy_dev.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698