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 | 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 Loading... |
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 Loading... |
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_ |
OLD | NEW |