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

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

Issue 9699069: Adding JSEP PeerConnection glue. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Deleting two renamed files. Created 8 years, 8 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 #pragma once 7 #pragma once
8 8
9 #include <deque> 9 #include <deque>
10 #include <map> 10 #include <map>
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
114 } 114 }
115 115
116 namespace WebKit { 116 namespace WebKit {
117 class WebApplicationCacheHost; 117 class WebApplicationCacheHost;
118 class WebApplicationCacheHostClient; 118 class WebApplicationCacheHostClient;
119 class WebDataSource; 119 class WebDataSource;
120 class WebDragData; 120 class WebDragData;
121 class WebGeolocationClient; 121 class WebGeolocationClient;
122 class WebIconURL; 122 class WebIconURL;
123 class WebImage; 123 class WebImage;
124 class WebPeerConnection00Handler;
125 class WebPeerConnection00HandlerClient;
124 class WebMediaPlayer; 126 class WebMediaPlayer;
125 class WebMediaPlayerClient; 127 class WebMediaPlayerClient;
126 class WebMouseEvent; 128 class WebMouseEvent;
127 class WebPeerConnectionHandler; 129 class WebPeerConnectionHandler;
128 class WebPeerConnectionHandlerClient; 130 class WebPeerConnectionHandlerClient;
129 class WebSocketStreamHandle; 131 class WebSocketStreamHandle;
130 class WebSpeechInputController; 132 class WebSpeechInputController;
131 class WebSpeechInputListener; 133 class WebSpeechInputListener;
132 class WebStorageNamespace; 134 class WebStorageNamespace;
133 class WebTouchEvent; 135 class WebTouchEvent;
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 content::P2PSocketDispatcher* p2p_socket_dispatcher() { 224 content::P2PSocketDispatcher* p2p_socket_dispatcher() {
223 return p2p_socket_dispatcher_; 225 return p2p_socket_dispatcher_;
224 } 226 }
225 227
226 MouseLockDispatcher* mouse_lock_dispatcher() { 228 MouseLockDispatcher* mouse_lock_dispatcher() {
227 return mouse_lock_dispatcher_; 229 return mouse_lock_dispatcher_;
228 } 230 }
229 231
230 WebKit::WebPeerConnectionHandler* CreatePeerConnectionHandler( 232 WebKit::WebPeerConnectionHandler* CreatePeerConnectionHandler(
231 WebKit::WebPeerConnectionHandlerClient* client); 233 WebKit::WebPeerConnectionHandlerClient* client);
234 WebKit::WebPeerConnection00Handler* CreatePeerConnectionHandlerJsep(
235 WebKit::WebPeerConnection00HandlerClient* client);
232 236
233 // Functions to add and remove observers for this object. 237 // Functions to add and remove observers for this object.
234 void AddObserver(content::RenderViewObserver* observer); 238 void AddObserver(content::RenderViewObserver* observer);
235 void RemoveObserver(content::RenderViewObserver* observer); 239 void RemoveObserver(content::RenderViewObserver* observer);
236 240
237 // Adds the given file chooser request to the file_chooser_completion_ queue 241 // Adds the given file chooser request to the file_chooser_completion_ queue
238 // (see that var for more) and requests the chooser be displayed if there are 242 // (see that var for more) and requests the chooser be displayed if there are
239 // no other waiting items in the queue. 243 // no other waiting items in the queue.
240 // 244 //
241 // Returns true if the chooser was successfully scheduled. False means we 245 // Returns true if the chooser was successfully scheduled. False means we
(...skipping 1069 matching lines...) Expand 10 before | Expand all | Expand 10 after
1311 // bunch of stuff, you should probably create a helper class and put your 1315 // bunch of stuff, you should probably create a helper class and put your
1312 // data and methods on that to avoid bloating RenderView more. You can 1316 // data and methods on that to avoid bloating RenderView more. You can
1313 // use the Observer interface to filter IPC messages and receive frame change 1317 // use the Observer interface to filter IPC messages and receive frame change
1314 // notifications. 1318 // notifications.
1315 // --------------------------------------------------------------------------- 1319 // ---------------------------------------------------------------------------
1316 1320
1317 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1321 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1318 }; 1322 };
1319 1323
1320 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1324 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698