| 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 351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 362 // IPC::Listener implementation ---------------------------------------------- | 362 // IPC::Listener implementation ---------------------------------------------- |
| 363 | 363 |
| 364 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; | 364 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; |
| 365 | 365 |
| 366 // blink::WebWidgetClient implementation ------------------------------------ | 366 // blink::WebWidgetClient implementation ------------------------------------ |
| 367 | 367 |
| 368 // Most methods are handled by RenderWidget. | 368 // Most methods are handled by RenderWidget. |
| 369 virtual void didFocus(); | 369 virtual void didFocus(); |
| 370 virtual void didBlur(); | 370 virtual void didBlur(); |
| 371 virtual void show(blink::WebNavigationPolicy policy); | 371 virtual void show(blink::WebNavigationPolicy policy); |
| 372 virtual void runModal(); |
| 372 virtual bool enterFullScreen(); | 373 virtual bool enterFullScreen(); |
| 373 virtual void exitFullScreen(); | 374 virtual void exitFullScreen(); |
| 374 virtual bool requestPointerLock(); | 375 virtual bool requestPointerLock(); |
| 375 virtual void requestPointerUnlock(); | 376 virtual void requestPointerUnlock(); |
| 376 virtual bool isPointerLocked(); | 377 virtual bool isPointerLocked(); |
| 377 // FIXME: To be removed as soon as chromium and blink side changes land | 378 // FIXME: To be removed as soon as chromium and blink side changes land |
| 378 // didActivateCompositor with parameters is still kept in order to land | 379 // didActivateCompositor with parameters is still kept in order to land |
| 379 // these changes s-chromium - https://codereview.chromium.org/137893025/. | 380 // these changes s-chromium - https://codereview.chromium.org/137893025/. |
| 380 // s-blink - https://codereview.chromium.org/138523003/ | 381 // s-blink - https://codereview.chromium.org/138523003/ |
| 381 virtual void didActivateCompositor(int input_handler_identifier); | 382 virtual void didActivateCompositor(int input_handler_identifier); |
| (...skipping 1049 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1431 // use the Observer interface to filter IPC messages and receive frame change | 1432 // use the Observer interface to filter IPC messages and receive frame change |
| 1432 // notifications. | 1433 // notifications. |
| 1433 // --------------------------------------------------------------------------- | 1434 // --------------------------------------------------------------------------- |
| 1434 | 1435 |
| 1435 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1436 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1436 }; | 1437 }; |
| 1437 | 1438 |
| 1438 } // namespace content | 1439 } // namespace content |
| 1439 | 1440 |
| 1440 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1441 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |