| 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 806 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 817 virtual void GetCompositionCharacterBounds( | 817 virtual void GetCompositionCharacterBounds( |
| 818 std::vector<gfx::Rect>* character_bounds) OVERRIDE; | 818 std::vector<gfx::Rect>* character_bounds) OVERRIDE; |
| 819 virtual void GetCompositionRange(ui::Range* range) OVERRIDE; | 819 virtual void GetCompositionRange(ui::Range* range) OVERRIDE; |
| 820 virtual bool CanComposeInline() OVERRIDE; | 820 virtual bool CanComposeInline() OVERRIDE; |
| 821 virtual void DidCommitCompositorFrame() OVERRIDE; | 821 virtual void DidCommitCompositorFrame() OVERRIDE; |
| 822 virtual void InstrumentWillBeginFrame() OVERRIDE; | 822 virtual void InstrumentWillBeginFrame() OVERRIDE; |
| 823 virtual void InstrumentDidBeginFrame() OVERRIDE; | 823 virtual void InstrumentDidBeginFrame() OVERRIDE; |
| 824 virtual void InstrumentDidCancelFrame() OVERRIDE; | 824 virtual void InstrumentDidCancelFrame() OVERRIDE; |
| 825 virtual void InstrumentWillComposite() OVERRIDE; | 825 virtual void InstrumentWillComposite() OVERRIDE; |
| 826 virtual bool AllowPartialSwap() const OVERRIDE; | 826 virtual bool AllowPartialSwap() const OVERRIDE; |
| 827 virtual void initializeLayerTreeView() OVERRIDE; |
| 827 | 828 |
| 828 protected: | 829 protected: |
| 829 explicit RenderViewImpl(RenderViewImplParams* params); | 830 explicit RenderViewImpl(RenderViewImplParams* params); |
| 830 | 831 |
| 831 void Initialize(RenderViewImplParams* params); | 832 void Initialize(RenderViewImplParams* params); |
| 832 | 833 |
| 833 // Do not delete directly. This class is reference counted. | 834 // Do not delete directly. This class is reference counted. |
| 834 virtual ~RenderViewImpl(); | 835 virtual ~RenderViewImpl(); |
| 835 | 836 |
| 836 private: | 837 private: |
| (...skipping 731 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1568 // use the Observer interface to filter IPC messages and receive frame change | 1569 // use the Observer interface to filter IPC messages and receive frame change |
| 1569 // notifications. | 1570 // notifications. |
| 1570 // --------------------------------------------------------------------------- | 1571 // --------------------------------------------------------------------------- |
| 1571 | 1572 |
| 1572 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1573 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1573 }; | 1574 }; |
| 1574 | 1575 |
| 1575 } // namespace content | 1576 } // namespace content |
| 1576 | 1577 |
| 1577 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1578 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |