| 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 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 // IPC::Listener implementation ---------------------------------------------- | 326 // IPC::Listener implementation ---------------------------------------------- |
| 327 | 327 |
| 328 bool OnMessageReceived(const IPC::Message& msg) override; | 328 bool OnMessageReceived(const IPC::Message& msg) override; |
| 329 | 329 |
| 330 // blink::WebWidgetClient implementation ------------------------------------ | 330 // blink::WebWidgetClient implementation ------------------------------------ |
| 331 | 331 |
| 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(blink::WebNavigationPolicy policy); | 335 virtual void show(blink::WebNavigationPolicy policy); |
| 336 virtual void runModal(); | |
| 337 virtual bool requestPointerLock(); | 336 virtual bool requestPointerLock(); |
| 338 virtual void requestPointerUnlock(); | 337 virtual void requestPointerUnlock(); |
| 339 virtual bool isPointerLocked(); | 338 virtual bool isPointerLocked(); |
| 340 virtual void didHandleGestureEvent(const blink::WebGestureEvent& event, | 339 virtual void didHandleGestureEvent(const blink::WebGestureEvent& event, |
| 341 bool event_cancelled) override; | 340 bool event_cancelled) override; |
| 342 virtual void initializeLayerTreeView() override; | 341 virtual void initializeLayerTreeView() override; |
| 343 | 342 |
| 344 // blink::WebViewClient implementation -------------------------------------- | 343 // blink::WebViewClient implementation -------------------------------------- |
| 345 | 344 |
| 346 virtual blink::WebView* createView(blink::WebLocalFrame* creator, | 345 virtual blink::WebView* createView(blink::WebLocalFrame* creator, |
| (...skipping 700 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1047 // use the Observer interface to filter IPC messages and receive frame change | 1046 // use the Observer interface to filter IPC messages and receive frame change |
| 1048 // notifications. | 1047 // notifications. |
| 1049 // --------------------------------------------------------------------------- | 1048 // --------------------------------------------------------------------------- |
| 1050 | 1049 |
| 1051 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1050 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1052 }; | 1051 }; |
| 1053 | 1052 |
| 1054 } // namespace content | 1053 } // namespace content |
| 1055 | 1054 |
| 1056 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1055 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |