OLD | NEW |
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 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 } | 117 } |
118 | 118 |
119 namespace WebKit { | 119 namespace WebKit { |
120 class WebApplicationCacheHost; | 120 class WebApplicationCacheHost; |
121 class WebApplicationCacheHostClient; | 121 class WebApplicationCacheHostClient; |
122 class WebDataSource; | 122 class WebDataSource; |
123 class WebDragData; | 123 class WebDragData; |
124 class WebGeolocationClient; | 124 class WebGeolocationClient; |
125 class WebIconURL; | 125 class WebIconURL; |
126 class WebImage; | 126 class WebImage; |
127 class WebPeerConnection00Handler; | |
128 class WebPeerConnection00HandlerClient; | |
129 class WebMediaPlayer; | 127 class WebMediaPlayer; |
130 class WebMediaPlayerClient; | 128 class WebMediaPlayerClient; |
131 class WebMouseEvent; | 129 class WebMouseEvent; |
132 class WebPeerConnectionHandler; | 130 class WebPeerConnectionHandler; |
133 class WebPeerConnectionHandlerClient; | 131 class WebPeerConnectionHandlerClient; |
134 class WebSocketStreamHandle; | 132 class WebSocketStreamHandle; |
135 class WebSpeechInputController; | 133 class WebSpeechInputController; |
136 class WebSpeechInputListener; | 134 class WebSpeechInputListener; |
137 class WebStorageNamespace; | 135 class WebStorageNamespace; |
138 class WebTouchEvent; | 136 class WebTouchEvent; |
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
228 content::P2PSocketDispatcher* p2p_socket_dispatcher() { | 226 content::P2PSocketDispatcher* p2p_socket_dispatcher() { |
229 return p2p_socket_dispatcher_; | 227 return p2p_socket_dispatcher_; |
230 } | 228 } |
231 | 229 |
232 MouseLockDispatcher* mouse_lock_dispatcher() { | 230 MouseLockDispatcher* mouse_lock_dispatcher() { |
233 return mouse_lock_dispatcher_; | 231 return mouse_lock_dispatcher_; |
234 } | 232 } |
235 | 233 |
236 WebKit::WebPeerConnectionHandler* CreatePeerConnectionHandler( | 234 WebKit::WebPeerConnectionHandler* CreatePeerConnectionHandler( |
237 WebKit::WebPeerConnectionHandlerClient* client); | 235 WebKit::WebPeerConnectionHandlerClient* client); |
238 WebKit::WebPeerConnection00Handler* CreatePeerConnectionHandlerJsep( | |
239 WebKit::WebPeerConnection00HandlerClient* client); | |
240 | 236 |
241 // Functions to add and remove observers for this object. | 237 // Functions to add and remove observers for this object. |
242 void AddObserver(content::RenderViewObserver* observer); | 238 void AddObserver(content::RenderViewObserver* observer); |
243 void RemoveObserver(content::RenderViewObserver* observer); | 239 void RemoveObserver(content::RenderViewObserver* observer); |
244 | 240 |
245 // 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 |
246 // (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 |
247 // no other waiting items in the queue. | 243 // no other waiting items in the queue. |
248 // | 244 // |
249 // Returns true if the chooser was successfully scheduled. False means we | 245 // Returns true if the chooser was successfully scheduled. False means we |
(...skipping 1075 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1325 // bunch of stuff, you should probably create a helper class and put your | 1321 // bunch of stuff, you should probably create a helper class and put your |
1326 // data and methods on that to avoid bloating RenderView more. You can | 1322 // data and methods on that to avoid bloating RenderView more. You can |
1327 // use the Observer interface to filter IPC messages and receive frame change | 1323 // use the Observer interface to filter IPC messages and receive frame change |
1328 // notifications. | 1324 // notifications. |
1329 // --------------------------------------------------------------------------- | 1325 // --------------------------------------------------------------------------- |
1330 | 1326 |
1331 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1327 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1332 }; | 1328 }; |
1333 | 1329 |
1334 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1330 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |