| 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 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 385 // Most methods are handled by RenderWidget. | 385 // Most methods are handled by RenderWidget. |
| 386 virtual void didFocus(); | 386 virtual void didFocus(); |
| 387 virtual void didBlur(); | 387 virtual void didBlur(); |
| 388 virtual void show(blink::WebNavigationPolicy policy); | 388 virtual void show(blink::WebNavigationPolicy policy); |
| 389 virtual void runModal(); | 389 virtual void runModal(); |
| 390 virtual bool enterFullScreen(); | 390 virtual bool enterFullScreen(); |
| 391 virtual void exitFullScreen(); | 391 virtual void exitFullScreen(); |
| 392 virtual bool requestPointerLock(); | 392 virtual bool requestPointerLock(); |
| 393 virtual void requestPointerUnlock(); | 393 virtual void requestPointerUnlock(); |
| 394 virtual bool isPointerLocked(); | 394 virtual bool isPointerLocked(); |
| 395 virtual void didActivateCompositor() OVERRIDE; | |
| 396 virtual void didHandleGestureEvent(const blink::WebGestureEvent& event, | 395 virtual void didHandleGestureEvent(const blink::WebGestureEvent& event, |
| 397 bool event_cancelled) OVERRIDE; | 396 bool event_cancelled) OVERRIDE; |
| 398 virtual void initializeLayerTreeView() OVERRIDE; | 397 virtual void initializeLayerTreeView() OVERRIDE; |
| 399 | 398 |
| 400 // blink::WebViewClient implementation -------------------------------------- | 399 // blink::WebViewClient implementation -------------------------------------- |
| 401 | 400 |
| 402 virtual blink::WebView* createView(blink::WebLocalFrame* creator, | 401 virtual blink::WebView* createView(blink::WebLocalFrame* creator, |
| 403 const blink::WebURLRequest& request, | 402 const blink::WebURLRequest& request, |
| 404 const blink::WebWindowFeatures& features, | 403 const blink::WebWindowFeatures& features, |
| 405 const blink::WebString& frame_name, | 404 const blink::WebString& frame_name, |
| (...skipping 799 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1205 // use the Observer interface to filter IPC messages and receive frame change | 1204 // use the Observer interface to filter IPC messages and receive frame change |
| 1206 // notifications. | 1205 // notifications. |
| 1207 // --------------------------------------------------------------------------- | 1206 // --------------------------------------------------------------------------- |
| 1208 | 1207 |
| 1209 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1208 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1210 }; | 1209 }; |
| 1211 | 1210 |
| 1212 } // namespace content | 1211 } // namespace content |
| 1213 | 1212 |
| 1214 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1213 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |