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 730 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
741 gfx::Rect* location, | 741 gfx::Rect* location, |
742 gfx::Rect* clip) OVERRIDE; | 742 gfx::Rect* clip) OVERRIDE; |
743 virtual gfx::Point GetScrollOffset() OVERRIDE; | 743 virtual gfx::Point GetScrollOffset() OVERRIDE; |
744 virtual void DidHandleKeyEvent() OVERRIDE; | 744 virtual void DidHandleKeyEvent() OVERRIDE; |
745 virtual bool WillHandleMouseEvent( | 745 virtual bool WillHandleMouseEvent( |
746 const WebKit::WebMouseEvent& event) OVERRIDE; | 746 const WebKit::WebMouseEvent& event) OVERRIDE; |
747 virtual void DidHandleMouseEvent(const WebKit::WebMouseEvent& event) OVERRIDE; | 747 virtual void DidHandleMouseEvent(const WebKit::WebMouseEvent& event) OVERRIDE; |
748 virtual void DidHandleTouchEvent(const WebKit::WebTouchEvent& event) OVERRIDE; | 748 virtual void DidHandleTouchEvent(const WebKit::WebTouchEvent& event) OVERRIDE; |
749 virtual void OnSetFocus(bool enable) OVERRIDE; | 749 virtual void OnSetFocus(bool enable) OVERRIDE; |
750 virtual void OnWasHidden() OVERRIDE; | 750 virtual void OnWasHidden() OVERRIDE; |
751 virtual void OnWasRestored(bool needs_repainting) OVERRIDE; | 751 virtual void OnWasShown(bool needs_repainting) OVERRIDE; |
752 virtual bool SupportsAsynchronousSwapBuffers() OVERRIDE; | 752 virtual bool SupportsAsynchronousSwapBuffers() OVERRIDE; |
753 virtual void OnImeSetComposition( | 753 virtual void OnImeSetComposition( |
754 const string16& text, | 754 const string16& text, |
755 const std::vector<WebKit::WebCompositionUnderline>& underlines, | 755 const std::vector<WebKit::WebCompositionUnderline>& underlines, |
756 int selection_start, | 756 int selection_start, |
757 int selection_end) OVERRIDE; | 757 int selection_end) OVERRIDE; |
758 virtual void OnImeConfirmComposition( | 758 virtual void OnImeConfirmComposition( |
759 const string16& text, const ui::Range& replacement_range) OVERRIDE; | 759 const string16& text, const ui::Range& replacement_range) OVERRIDE; |
760 virtual void OnSetDeviceScaleFactor(float device_scale_factor) OVERRIDE; | 760 virtual void OnSetDeviceScaleFactor(float device_scale_factor) OVERRIDE; |
761 virtual ui::TextInputType GetTextInputType() OVERRIDE; | 761 virtual ui::TextInputType GetTextInputType() OVERRIDE; |
(...skipping 667 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1429 // bunch of stuff, you should probably create a helper class and put your | 1429 // bunch of stuff, you should probably create a helper class and put your |
1430 // data and methods on that to avoid bloating RenderView more. You can | 1430 // data and methods on that to avoid bloating RenderView more. You can |
1431 // use the Observer interface to filter IPC messages and receive frame change | 1431 // use the Observer interface to filter IPC messages and receive frame change |
1432 // notifications. | 1432 // notifications. |
1433 // --------------------------------------------------------------------------- | 1433 // --------------------------------------------------------------------------- |
1434 | 1434 |
1435 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1435 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1436 }; | 1436 }; |
1437 | 1437 |
1438 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1438 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |