| 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 812 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 823 virtual ui::TextInputType GetTextInputType() OVERRIDE; | 823 virtual ui::TextInputType GetTextInputType() OVERRIDE; |
| 824 virtual void GetSelectionBounds(gfx::Rect* start, gfx::Rect* end) OVERRIDE; | 824 virtual void GetSelectionBounds(gfx::Rect* start, gfx::Rect* end) OVERRIDE; |
| 825 virtual void GetCompositionCharacterBounds( | 825 virtual void GetCompositionCharacterBounds( |
| 826 std::vector<gfx::Rect>* character_bounds) OVERRIDE; | 826 std::vector<gfx::Rect>* character_bounds) OVERRIDE; |
| 827 virtual bool CanComposeInline() OVERRIDE; | 827 virtual bool CanComposeInline() OVERRIDE; |
| 828 virtual void DidCommitCompositorFrame() OVERRIDE; | 828 virtual void DidCommitCompositorFrame() OVERRIDE; |
| 829 virtual void InstrumentWillBeginFrame() OVERRIDE; | 829 virtual void InstrumentWillBeginFrame() OVERRIDE; |
| 830 virtual void InstrumentDidBeginFrame() OVERRIDE; | 830 virtual void InstrumentDidBeginFrame() OVERRIDE; |
| 831 virtual void InstrumentDidCancelFrame() OVERRIDE; | 831 virtual void InstrumentDidCancelFrame() OVERRIDE; |
| 832 virtual void InstrumentWillComposite() OVERRIDE; | 832 virtual void InstrumentWillComposite() OVERRIDE; |
| 833 virtual bool AllowPartialSwap() const OVERRIDE; |
| 833 | 834 |
| 834 protected: | 835 protected: |
| 835 explicit RenderViewImpl(RenderViewImplParams* params); | 836 explicit RenderViewImpl(RenderViewImplParams* params); |
| 836 | 837 |
| 837 void Initialize(RenderViewImplParams* params); | 838 void Initialize(RenderViewImplParams* params); |
| 838 | 839 |
| 839 // Do not delete directly. This class is reference counted. | 840 // Do not delete directly. This class is reference counted. |
| 840 virtual ~RenderViewImpl(); | 841 virtual ~RenderViewImpl(); |
| 841 | 842 |
| 842 private: | 843 private: |
| (...skipping 788 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1631 // use the Observer interface to filter IPC messages and receive frame change | 1632 // use the Observer interface to filter IPC messages and receive frame change |
| 1632 // notifications. | 1633 // notifications. |
| 1633 // --------------------------------------------------------------------------- | 1634 // --------------------------------------------------------------------------- |
| 1634 | 1635 |
| 1635 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1636 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1636 }; | 1637 }; |
| 1637 | 1638 |
| 1638 } // namespace content | 1639 } // namespace content |
| 1639 | 1640 |
| 1640 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1641 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |