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