| 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 392 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 403 virtual void show(WebKit::WebNavigationPolicy policy); | 403 virtual void show(WebKit::WebNavigationPolicy policy); |
| 404 virtual void runModal(); | 404 virtual void runModal(); |
| 405 virtual bool enterFullScreen(); | 405 virtual bool enterFullScreen(); |
| 406 virtual void exitFullScreen(); | 406 virtual void exitFullScreen(); |
| 407 virtual bool requestPointerLock(); | 407 virtual bool requestPointerLock(); |
| 408 virtual void requestPointerUnlock(); | 408 virtual void requestPointerUnlock(); |
| 409 virtual bool isPointerLocked(); | 409 virtual bool isPointerLocked(); |
| 410 virtual void didActivateCompositor(int input_handler_identifier); | 410 virtual void didActivateCompositor(int input_handler_identifier); |
| 411 virtual void didHandleGestureEvent(const WebKit::WebGestureEvent& event, | 411 virtual void didHandleGestureEvent(const WebKit::WebGestureEvent& event, |
| 412 bool event_cancelled) OVERRIDE; | 412 bool event_cancelled) OVERRIDE; |
| 413 virtual void initializeLayerTreeView() OVERRIDE; |
| 413 | 414 |
| 414 // WebKit::WebViewClient implementation -------------------------------------- | 415 // WebKit::WebViewClient implementation -------------------------------------- |
| 415 | 416 |
| 416 virtual WebKit::WebView* createView( | 417 virtual WebKit::WebView* createView( |
| 417 WebKit::WebFrame* creator, | 418 WebKit::WebFrame* creator, |
| 418 const WebKit::WebURLRequest& request, | 419 const WebKit::WebURLRequest& request, |
| 419 const WebKit::WebWindowFeatures& features, | 420 const WebKit::WebWindowFeatures& features, |
| 420 const WebKit::WebString& frame_name, | 421 const WebKit::WebString& frame_name, |
| 421 WebKit::WebNavigationPolicy policy); | 422 WebKit::WebNavigationPolicy policy); |
| 422 virtual WebKit::WebWidget* createPopupMenu(WebKit::WebPopupType popup_type); | 423 virtual WebKit::WebWidget* createPopupMenu(WebKit::WebPopupType popup_type); |
| (...skipping 1134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1557 // use the Observer interface to filter IPC messages and receive frame change | 1558 // use the Observer interface to filter IPC messages and receive frame change |
| 1558 // notifications. | 1559 // notifications. |
| 1559 // --------------------------------------------------------------------------- | 1560 // --------------------------------------------------------------------------- |
| 1560 | 1561 |
| 1561 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1562 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1562 }; | 1563 }; |
| 1563 | 1564 |
| 1564 } // namespace content | 1565 } // namespace content |
| 1565 | 1566 |
| 1566 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1567 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |