| 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 <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 509 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 520 | 520 |
| 521 void RenderWidgetDidSetColorProfile( | 521 void RenderWidgetDidSetColorProfile( |
| 522 const std::vector<char>& color_profile) override; | 522 const std::vector<char>& color_profile) override; |
| 523 void RenderWidgetFocusChangeComplete() override; | 523 void RenderWidgetFocusChangeComplete() override; |
| 524 bool DoesRenderWidgetHaveTouchEventHandlersAt( | 524 bool DoesRenderWidgetHaveTouchEventHandlersAt( |
| 525 const gfx::Point& point) const override; | 525 const gfx::Point& point) const override; |
| 526 bool RenderWidgetWillHandleGestureEvent( | 526 bool RenderWidgetWillHandleGestureEvent( |
| 527 const blink::WebGestureEvent& event) override; | 527 const blink::WebGestureEvent& event) override; |
| 528 bool RenderWidgetWillHandleMouseEvent( | 528 bool RenderWidgetWillHandleMouseEvent( |
| 529 const blink::WebMouseEvent& event) override; | 529 const blink::WebMouseEvent& event) override; |
| 530 void RenderWidgetDidFlushPaint() override; | |
| 531 | 530 |
| 532 // Old WebFrameClient implementations ---------------------------------------- | 531 // Old WebFrameClient implementations ---------------------------------------- |
| 533 | 532 |
| 534 // RenderViewImpl used to be a WebFrameClient, but now RenderFrameImpl is the | 533 // RenderViewImpl used to be a WebFrameClient, but now RenderFrameImpl is the |
| 535 // WebFrameClient. However, many implementations of WebFrameClient methods | 534 // WebFrameClient. However, many implementations of WebFrameClient methods |
| 536 // still live here and are called from RenderFrameImpl. These implementations | 535 // still live here and are called from RenderFrameImpl. These implementations |
| 537 // are to be moved to RenderFrameImpl <http://crbug.com/361761>. | 536 // are to be moved to RenderFrameImpl <http://crbug.com/361761>. |
| 538 | 537 |
| 539 void didChangeIcon(blink::WebLocalFrame*, blink::WebIconURL::Type); | 538 void didChangeIcon(blink::WebLocalFrame*, blink::WebIconURL::Type); |
| 540 | 539 |
| (...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 901 // use the Observer interface to filter IPC messages and receive frame change | 900 // use the Observer interface to filter IPC messages and receive frame change |
| 902 // notifications. | 901 // notifications. |
| 903 // --------------------------------------------------------------------------- | 902 // --------------------------------------------------------------------------- |
| 904 | 903 |
| 905 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 904 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 906 }; | 905 }; |
| 907 | 906 |
| 908 } // namespace content | 907 } // namespace content |
| 909 | 908 |
| 910 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 909 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |