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

Side by Side Diff: content/renderer/render_view_impl.h

Issue 10804004: Remove the deprecated PeerConnection that uses the ROAP protocol. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removed trailing whitespace in webrtc.py Created 8 years, 4 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 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 MouseLockDispatcher* mouse_lock_dispatcher() { 250 MouseLockDispatcher* mouse_lock_dispatcher() {
251 return mouse_lock_dispatcher_; 251 return mouse_lock_dispatcher_;
252 } 252 }
253 253
254 #if defined(OS_ANDROID) 254 #if defined(OS_ANDROID)
255 webkit_media::WebMediaPlayerManagerAndroid* media_player_manager() { 255 webkit_media::WebMediaPlayerManagerAndroid* media_player_manager() {
256 return media_player_manager_.get(); 256 return media_player_manager_.get();
257 } 257 }
258 #endif 258 #endif
259 259
260 WebKit::WebPeerConnectionHandler* CreatePeerConnectionHandler(
261 WebKit::WebPeerConnectionHandlerClient* client);
262 WebKit::WebPeerConnection00Handler* CreatePeerConnectionHandlerJsep( 260 WebKit::WebPeerConnection00Handler* CreatePeerConnectionHandlerJsep(
263 WebKit::WebPeerConnection00HandlerClient* client); 261 WebKit::WebPeerConnection00HandlerClient* client);
264 262
265 // Functions to add and remove observers for this object. 263 // Functions to add and remove observers for this object.
266 void AddObserver(content::RenderViewObserver* observer); 264 void AddObserver(content::RenderViewObserver* observer);
267 void RemoveObserver(content::RenderViewObserver* observer); 265 void RemoveObserver(content::RenderViewObserver* observer);
268 266
269 // Adds the given file chooser request to the file_chooser_completion_ queue 267 // Adds the given file chooser request to the file_chooser_completion_ queue
270 // (see that var for more) and requests the chooser be displayed if there are 268 // (see that var for more) and requests the chooser be displayed if there are
271 // no other waiting items in the queue. 269 // no other waiting items in the queue.
(...skipping 1159 matching lines...) Expand 10 before | Expand all | Expand 10 after
1431 // bunch of stuff, you should probably create a helper class and put your 1429 // bunch of stuff, you should probably create a helper class and put your
1432 // data and methods on that to avoid bloating RenderView more. You can 1430 // data and methods on that to avoid bloating RenderView more. You can
1433 // use the Observer interface to filter IPC messages and receive frame change 1431 // use the Observer interface to filter IPC messages and receive frame change
1434 // notifications. 1432 // notifications.
1435 // --------------------------------------------------------------------------- 1433 // ---------------------------------------------------------------------------
1436 1434
1437 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1435 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1438 }; 1436 };
1439 1437
1440 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1438 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « content/renderer/media/peer_connection_handler_unittest.cc ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698