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

Side by Side Diff: content/browser/renderer_host/media/peer_connection_tracker_host.cc

Issue 142923005: Allow MessageFilters to restrict listening to specific message classes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 9 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
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 #include "content/browser/renderer_host/media/peer_connection_tracker_host.h" 4 #include "content/browser/renderer_host/media/peer_connection_tracker_host.h"
5 5
6 #include "content/browser/media/webrtc_internals.h" 6 #include "content/browser/media/webrtc_internals.h"
7 #include "content/common/media/peer_connection_tracker_messages.h" 7 #include "content/common/media/peer_connection_tracker_messages.h"
8 8
9 namespace content { 9 namespace content {
10 10
11 PeerConnectionTrackerHost::PeerConnectionTrackerHost(int render_process_id) 11 PeerConnectionTrackerHost::PeerConnectionTrackerHost(int render_process_id)
12 : render_process_id_(render_process_id) {} 12 : BrowserMessageFilter(PeerConnectionTrackerMsgStart),
13 render_process_id_(render_process_id) {}
13 14
14 bool PeerConnectionTrackerHost::OnMessageReceived(const IPC::Message& message, 15 bool PeerConnectionTrackerHost::OnMessageReceived(const IPC::Message& message,
15 bool* message_was_ok) { 16 bool* message_was_ok) {
16 bool handled = true; 17 bool handled = true;
17 18
18 IPC_BEGIN_MESSAGE_MAP_EX(PeerConnectionTrackerHost, message, *message_was_ok) 19 IPC_BEGIN_MESSAGE_MAP_EX(PeerConnectionTrackerHost, message, *message_was_ok)
19 IPC_MESSAGE_HANDLER(PeerConnectionTrackerHost_AddPeerConnection, 20 IPC_MESSAGE_HANDLER(PeerConnectionTrackerHost_AddPeerConnection,
20 OnAddPeerConnection) 21 OnAddPeerConnection)
21 IPC_MESSAGE_HANDLER(PeerConnectionTrackerHost_RemovePeerConnection, 22 IPC_MESSAGE_HANDLER(PeerConnectionTrackerHost_RemovePeerConnection,
22 OnRemovePeerConnection) 23 OnRemovePeerConnection)
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 WebRTCInternals::GetInstance()->OnGetUserMedia(render_process_id_, 77 WebRTCInternals::GetInstance()->OnGetUserMedia(render_process_id_,
77 peer_pid(), 78 peer_pid(),
78 origin, 79 origin,
79 audio, 80 audio,
80 video, 81 video,
81 audio_constraints, 82 audio_constraints,
82 video_constraints); 83 video_constraints);
83 } 84 }
84 85
85 } // namespace content 86 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/renderer_host/media/midi_host.cc ('k') | content/browser/renderer_host/media/video_capture_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698