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 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
460 void OnClose() override; | 460 void OnClose() override; |
461 void Close() override; | 461 void Close() override; |
462 void OnResize(const ViewMsg_Resize_Params& params) override; | 462 void OnResize(const ViewMsg_Resize_Params& params) override; |
463 void DidInitiatePaint() override; | 463 void DidInitiatePaint() override; |
464 void DidFlushPaint() override; | 464 void DidFlushPaint() override; |
465 gfx::Vector2d GetScrollOffset() override; | 465 gfx::Vector2d GetScrollOffset() override; |
466 void DidHandleKeyEvent() override; | 466 void DidHandleKeyEvent() override; |
467 bool WillHandleMouseEvent(const blink::WebMouseEvent& event) override; | 467 bool WillHandleMouseEvent(const blink::WebMouseEvent& event) override; |
468 bool WillHandleGestureEvent(const blink::WebGestureEvent& event) override; | 468 bool WillHandleGestureEvent(const blink::WebGestureEvent& event) override; |
469 void DidHandleMouseEvent(const blink::WebMouseEvent& event) override; | 469 void DidHandleMouseEvent(const blink::WebMouseEvent& event) override; |
470 void DidHandleTouchEvent(const blink::WebTouchEvent& event) override; | |
471 bool HasTouchEventHandlersAt(const gfx::Point& point) const override; | 470 bool HasTouchEventHandlersAt(const gfx::Point& point) const override; |
472 void OnSetFocus(bool enable) override; | 471 void OnSetFocus(bool enable) override; |
473 void OnWasHidden() override; | 472 void OnWasHidden() override; |
474 void OnWasShown(bool needs_repainting, | 473 void OnWasShown(bool needs_repainting, |
475 const ui::LatencyInfo& latency_info) override; | 474 const ui::LatencyInfo& latency_info) override; |
476 GURL GetURLForGraphicsContext3D() override; | 475 GURL GetURLForGraphicsContext3D() override; |
477 void OnImeSetComposition( | 476 void OnImeSetComposition( |
478 const base::string16& text, | 477 const base::string16& text, |
479 const std::vector<blink::WebCompositionUnderline>& underlines, | 478 const std::vector<blink::WebCompositionUnderline>& underlines, |
480 int selection_start, | 479 int selection_start, |
(...skipping 541 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1022 // use the Observer interface to filter IPC messages and receive frame change | 1021 // use the Observer interface to filter IPC messages and receive frame change |
1023 // notifications. | 1022 // notifications. |
1024 // --------------------------------------------------------------------------- | 1023 // --------------------------------------------------------------------------- |
1025 | 1024 |
1026 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1025 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1027 }; | 1026 }; |
1028 | 1027 |
1029 } // namespace content | 1028 } // namespace content |
1030 | 1029 |
1031 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1030 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |