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 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
394 // Most methods are handled by RenderWidget. | 394 // Most methods are handled by RenderWidget. |
395 virtual void didFocus(); | 395 virtual void didFocus(); |
396 virtual void didBlur(); | 396 virtual void didBlur(); |
397 virtual void show(blink::WebNavigationPolicy policy); | 397 virtual void show(blink::WebNavigationPolicy policy); |
398 virtual void runModal(); | 398 virtual void runModal(); |
399 virtual bool enterFullScreen(); | 399 virtual bool enterFullScreen(); |
400 virtual void exitFullScreen(); | 400 virtual void exitFullScreen(); |
401 virtual bool requestPointerLock(); | 401 virtual bool requestPointerLock(); |
402 virtual void requestPointerUnlock(); | 402 virtual void requestPointerUnlock(); |
403 virtual bool isPointerLocked(); | 403 virtual bool isPointerLocked(); |
404 // FIXME: To be removed as soon as chromium and blink side changes land | |
405 // didActivateCompositor with parameters is still kept in order to land | |
406 // these changes s-chromium - https://codereview.chromium.org/137893025/. | |
407 // s-blink - https://codereview.chromium.org/138523003/ | |
408 virtual void didActivateCompositor(int input_handler_identifier); | |
409 virtual void didActivateCompositor() OVERRIDE; | 404 virtual void didActivateCompositor() OVERRIDE; |
410 virtual void didHandleGestureEvent(const blink::WebGestureEvent& event, | 405 virtual void didHandleGestureEvent(const blink::WebGestureEvent& event, |
411 bool event_cancelled) OVERRIDE; | 406 bool event_cancelled) OVERRIDE; |
412 virtual void initializeLayerTreeView() OVERRIDE; | 407 virtual void initializeLayerTreeView() OVERRIDE; |
413 | 408 |
414 // blink::WebViewClient implementation -------------------------------------- | 409 // blink::WebViewClient implementation -------------------------------------- |
415 | 410 |
416 virtual blink::WebView* createView( | 411 virtual blink::WebView* createView( |
417 blink::WebFrame* creator, | 412 blink::WebFrame* creator, |
418 const blink::WebURLRequest& request, | 413 const blink::WebURLRequest& request, |
(...skipping 1016 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1435 // use the Observer interface to filter IPC messages and receive frame change | 1430 // use the Observer interface to filter IPC messages and receive frame change |
1436 // notifications. | 1431 // notifications. |
1437 // --------------------------------------------------------------------------- | 1432 // --------------------------------------------------------------------------- |
1438 | 1433 |
1439 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1434 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1440 }; | 1435 }; |
1441 | 1436 |
1442 } // namespace content | 1437 } // namespace content |
1443 | 1438 |
1444 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1439 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |