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

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: Created 8 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 | 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 WebJSEPPeerConnectionHandler;
125 class WebJSEPPeerConnectionHandlerClient;
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 WebSpeechInputController; 131 class WebSpeechInputController;
130 class WebSpeechInputListener; 132 class WebSpeechInputListener;
131 class WebStorageNamespace; 133 class WebStorageNamespace;
132 class WebTouchEvent; 134 class WebTouchEvent;
133 class WebURLLoader; 135 class WebURLLoader;
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 content::P2PSocketDispatcher* p2p_socket_dispatcher() { 222 content::P2PSocketDispatcher* p2p_socket_dispatcher() {
221 return p2p_socket_dispatcher_; 223 return p2p_socket_dispatcher_;
222 } 224 }
223 225
224 MouseLockDispatcher* mouse_lock_dispatcher() { 226 MouseLockDispatcher* mouse_lock_dispatcher() {
225 return mouse_lock_dispatcher_; 227 return mouse_lock_dispatcher_;
226 } 228 }
227 229
228 WebKit::WebPeerConnectionHandler* CreatePeerConnectionHandler( 230 WebKit::WebPeerConnectionHandler* CreatePeerConnectionHandler(
229 WebKit::WebPeerConnectionHandlerClient* client); 231 WebKit::WebPeerConnectionHandlerClient* client);
232 WebKit::WebJSEPPeerConnectionHandler* CreatePeerConnectionHandlerJsep(
233 WebKit::WebJSEPPeerConnectionHandlerClient* client);
230 234
231 // Functions to add and remove observers for this object. 235 // Functions to add and remove observers for this object.
232 void AddObserver(content::RenderViewObserver* observer); 236 void AddObserver(content::RenderViewObserver* observer);
233 void RemoveObserver(content::RenderViewObserver* observer); 237 void RemoveObserver(content::RenderViewObserver* observer);
234 238
235 // Adds the given file chooser request to the file_chooser_completion_ queue 239 // Adds the given file chooser request to the file_chooser_completion_ queue
236 // (see that var for more) and requests the chooser be displayed if there are 240 // (see that var for more) and requests the chooser be displayed if there are
237 // no other waiting items in the queue. 241 // no other waiting items in the queue.
238 // 242 //
239 // Returns true if the chooser was successfully scheduled. False means we 243 // Returns true if the chooser was successfully scheduled. False means we
(...skipping 1067 matching lines...) Expand 10 before | Expand all | Expand 10 after
1307 // bunch of stuff, you should probably create a helper class and put your 1311 // bunch of stuff, you should probably create a helper class and put your
1308 // data and methods on that to avoid bloating RenderView more. You can 1312 // data and methods on that to avoid bloating RenderView more. You can
1309 // use the Observer interface to filter IPC messages and receive frame change 1313 // use the Observer interface to filter IPC messages and receive frame change
1310 // notifications. 1314 // notifications.
1311 // --------------------------------------------------------------------------- 1315 // ---------------------------------------------------------------------------
1312 1316
1313 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1317 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1314 }; 1318 };
1315 1319
1316 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1320 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698