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 321 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
332 // Most methods are handled by RenderWidget. | 332 // Most methods are handled by RenderWidget. |
333 virtual void didFocus(); | 333 virtual void didFocus(); |
334 virtual void didBlur(); | 334 virtual void didBlur(); |
335 virtual void show(WebKit::WebNavigationPolicy policy); | 335 virtual void show(WebKit::WebNavigationPolicy policy); |
336 virtual void runModal(); | 336 virtual void runModal(); |
337 virtual bool enterFullScreen(); | 337 virtual bool enterFullScreen(); |
338 virtual void exitFullScreen(); | 338 virtual void exitFullScreen(); |
339 virtual bool requestPointerLock(); | 339 virtual bool requestPointerLock(); |
340 virtual void requestPointerUnlock(); | 340 virtual void requestPointerUnlock(); |
341 virtual bool isPointerLocked(); | 341 virtual bool isPointerLocked(); |
| 342 virtual void didActivateCompositor(int input_handler_identifier); |
342 | 343 |
343 // WebKit::WebViewClient implementation -------------------------------------- | 344 // WebKit::WebViewClient implementation -------------------------------------- |
344 | 345 |
345 virtual WebKit::WebView* createView( | 346 virtual WebKit::WebView* createView( |
346 WebKit::WebFrame* creator, | 347 WebKit::WebFrame* creator, |
347 const WebKit::WebURLRequest& request, | 348 const WebKit::WebURLRequest& request, |
348 const WebKit::WebWindowFeatures& features, | 349 const WebKit::WebWindowFeatures& features, |
349 const WebKit::WebString& frame_name, | 350 const WebKit::WebString& frame_name, |
350 WebKit::WebNavigationPolicy policy); | 351 WebKit::WebNavigationPolicy policy); |
351 virtual WebKit::WebWidget* createPopupMenu(WebKit::WebPopupType popup_type); | 352 virtual WebKit::WebWidget* createPopupMenu(WebKit::WebPopupType popup_type); |
(...skipping 959 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1311 // bunch of stuff, you should probably create a helper class and put your | 1312 // 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 | 1313 // 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 | 1314 // use the Observer interface to filter IPC messages and receive frame change |
1314 // notifications. | 1315 // notifications. |
1315 // --------------------------------------------------------------------------- | 1316 // --------------------------------------------------------------------------- |
1316 | 1317 |
1317 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1318 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1318 }; | 1319 }; |
1319 | 1320 |
1320 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1321 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |