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 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
374 // Most methods are handled by RenderWidget. | 374 // Most methods are handled by RenderWidget. |
375 virtual void didFocus(); | 375 virtual void didFocus(); |
376 virtual void didBlur(); | 376 virtual void didBlur(); |
377 virtual void show(blink::WebNavigationPolicy policy); | 377 virtual void show(blink::WebNavigationPolicy policy); |
378 virtual void runModal(); | 378 virtual void runModal(); |
379 virtual bool enterFullScreen(); | 379 virtual bool enterFullScreen(); |
380 virtual void exitFullScreen(); | 380 virtual void exitFullScreen(); |
381 virtual bool requestPointerLock(); | 381 virtual bool requestPointerLock(); |
382 virtual void requestPointerUnlock(); | 382 virtual void requestPointerUnlock(); |
383 virtual bool isPointerLocked(); | 383 virtual bool isPointerLocked(); |
384 virtual void didActivateCompositor(int input_handler_identifier); | 384 virtual void didActivateCompositor(); |
385 virtual void didHandleGestureEvent(const blink::WebGestureEvent& event, | 385 virtual void didHandleGestureEvent(const blink::WebGestureEvent& event, |
386 bool event_cancelled) OVERRIDE; | 386 bool event_cancelled) OVERRIDE; |
387 virtual void initializeLayerTreeView() OVERRIDE; | 387 virtual void initializeLayerTreeView() OVERRIDE; |
388 | 388 |
389 // blink::WebViewClient implementation -------------------------------------- | 389 // blink::WebViewClient implementation -------------------------------------- |
390 | 390 |
391 virtual blink::WebView* createView( | 391 virtual blink::WebView* createView( |
392 blink::WebFrame* creator, | 392 blink::WebFrame* creator, |
393 const blink::WebURLRequest& request, | 393 const blink::WebURLRequest& request, |
394 const blink::WebWindowFeatures& features, | 394 const blink::WebWindowFeatures& features, |
(...skipping 1135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1530 // use the Observer interface to filter IPC messages and receive frame change | 1530 // use the Observer interface to filter IPC messages and receive frame change |
1531 // notifications. | 1531 // notifications. |
1532 // --------------------------------------------------------------------------- | 1532 // --------------------------------------------------------------------------- |
1533 | 1533 |
1534 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1534 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1535 }; | 1535 }; |
1536 | 1536 |
1537 } // namespace content | 1537 } // namespace content |
1538 | 1538 |
1539 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1539 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |