| 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 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 372 // IPC::Listener implementation ---------------------------------------------- | 372 // IPC::Listener implementation ---------------------------------------------- |
| 373 | 373 |
| 374 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; | 374 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; |
| 375 | 375 |
| 376 // blink::WebWidgetClient implementation ------------------------------------ | 376 // blink::WebWidgetClient implementation ------------------------------------ |
| 377 | 377 |
| 378 // Most methods are handled by RenderWidget. | 378 // Most methods are handled by RenderWidget. |
| 379 virtual void didFocus(); | 379 virtual void didFocus(); |
| 380 virtual void didBlur(); | 380 virtual void didBlur(); |
| 381 virtual void show(blink::WebNavigationPolicy policy); | 381 virtual void show(blink::WebNavigationPolicy policy); |
| 382 virtual void runModal(); | |
| 383 virtual bool enterFullScreen(); | 382 virtual bool enterFullScreen(); |
| 384 virtual void exitFullScreen(); | 383 virtual void exitFullScreen(); |
| 385 virtual bool requestPointerLock(); | 384 virtual bool requestPointerLock(); |
| 386 virtual void requestPointerUnlock(); | 385 virtual void requestPointerUnlock(); |
| 387 virtual bool isPointerLocked(); | 386 virtual bool isPointerLocked(); |
| 388 virtual void didActivateCompositor(int input_handler_identifier); | 387 virtual void didActivateCompositor(int input_handler_identifier); |
| 389 virtual void didHandleGestureEvent(const blink::WebGestureEvent& event, | 388 virtual void didHandleGestureEvent(const blink::WebGestureEvent& event, |
| 390 bool event_cancelled) OVERRIDE; | 389 bool event_cancelled) OVERRIDE; |
| 391 virtual void initializeLayerTreeView() OVERRIDE; | 390 virtual void initializeLayerTreeView() OVERRIDE; |
| 392 | 391 |
| (...skipping 1068 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1461 // use the Observer interface to filter IPC messages and receive frame change | 1460 // use the Observer interface to filter IPC messages and receive frame change |
| 1462 // notifications. | 1461 // notifications. |
| 1463 // --------------------------------------------------------------------------- | 1462 // --------------------------------------------------------------------------- |
| 1464 | 1463 |
| 1465 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1464 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1466 }; | 1465 }; |
| 1467 | 1466 |
| 1468 } // namespace content | 1467 } // namespace content |
| 1469 | 1468 |
| 1470 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1469 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |