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

Side by Side Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 22923014: TCPSockets are switched to the new Pepper proxy. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Sync. Created 7 years, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Represents the browser side of the browser <--> renderer communication 5 // Represents the browser side of the browser <--> renderer communication
6 // channel. There will be one RenderProcessHost per renderer process. 6 // channel. There will be one RenderProcessHost per renderer process.
7 7
8 #include "content/browser/renderer_host/render_process_host_impl.h" 8 #include "content/browser/renderer_host/render_process_host_impl.h"
9 9
10 #include <algorithm> 10 #include <algorithm>
(...skipping 605 matching lines...) Expand 10 before | Expand all | Expand 10 after
616 GetID(), storage_partition_impl_->GetWebRTCIdentityStore())); 616 GetID(), storage_partition_impl_->GetWebRTCIdentityStore()));
617 peer_connection_tracker_host_ = new PeerConnectionTrackerHost(GetID()); 617 peer_connection_tracker_host_ = new PeerConnectionTrackerHost(GetID());
618 channel_->AddFilter(peer_connection_tracker_host_.get()); 618 channel_->AddFilter(peer_connection_tracker_host_.get());
619 channel_->AddFilter(new MediaStreamDispatcherHost( 619 channel_->AddFilter(new MediaStreamDispatcherHost(
620 GetID(), media_stream_manager)); 620 GetID(), media_stream_manager));
621 channel_->AddFilter( 621 channel_->AddFilter(
622 new DeviceRequestMessageFilter(resource_context, media_stream_manager)); 622 new DeviceRequestMessageFilter(resource_context, media_stream_manager));
623 #endif 623 #endif
624 #if defined(ENABLE_PLUGINS) 624 #if defined(ENABLE_PLUGINS)
625 // TODO(raymes): PepperMessageFilter should be removed from here. 625 // TODO(raymes): PepperMessageFilter should be removed from here.
626 channel_->AddFilter(new PepperMessageFilter(GetID(), browser_context)); 626 channel_->AddFilter(PepperMessageFilter::CreateForRendererProcess());
627 channel_->AddFilter(new PepperRendererConnection(GetID())); 627 channel_->AddFilter(new PepperRendererConnection(GetID()));
628 #endif 628 #endif
629 #if defined(ENABLE_INPUT_SPEECH) 629 #if defined(ENABLE_INPUT_SPEECH)
630 channel_->AddFilter(new InputTagSpeechDispatcherHost( 630 channel_->AddFilter(new InputTagSpeechDispatcherHost(
631 IsGuest(), GetID(), storage_partition_impl_->GetURLRequestContext())); 631 IsGuest(), GetID(), storage_partition_impl_->GetURLRequestContext()));
632 #endif 632 #endif
633 channel_->AddFilter(new SpeechRecognitionDispatcherHost( 633 channel_->AddFilter(new SpeechRecognitionDispatcherHost(
634 GetID(), storage_partition_impl_->GetURLRequestContext())); 634 GetID(), storage_partition_impl_->GetURLRequestContext()));
635 channel_->AddFilter(new FileAPIMessageFilter( 635 channel_->AddFilter(new FileAPIMessageFilter(
636 GetID(), 636 GetID(),
(...skipping 1133 matching lines...) Expand 10 before | Expand all | Expand 10 after
1770 // Skip widgets in other processes. 1770 // Skip widgets in other processes.
1771 if (widgets[i]->GetProcess()->GetID() != GetID()) 1771 if (widgets[i]->GetProcess()->GetID() != GetID())
1772 continue; 1772 continue;
1773 1773
1774 RenderViewHost* rvh = RenderViewHost::From(widgets[i]); 1774 RenderViewHost* rvh = RenderViewHost::From(widgets[i]);
1775 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); 1775 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences());
1776 } 1776 }
1777 } 1777 }
1778 1778
1779 } // namespace content 1779 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/renderer_host/pepper/ssl_context_helper.cc ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698