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