Chromium Code Reviews| 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 811 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 822 std::vector<gfx::Rect>* character_bounds) OVERRIDE; | 822 std::vector<gfx::Rect>* character_bounds) OVERRIDE; |
| 823 virtual void GetCompositionRange(ui::Range* range) OVERRIDE; | 823 virtual void GetCompositionRange(ui::Range* range) OVERRIDE; |
| 824 #endif | 824 #endif |
| 825 virtual bool CanComposeInline() OVERRIDE; | 825 virtual bool CanComposeInline() OVERRIDE; |
| 826 virtual void DidCommitCompositorFrame() OVERRIDE; | 826 virtual void DidCommitCompositorFrame() OVERRIDE; |
| 827 virtual void InstrumentWillBeginFrame() OVERRIDE; | 827 virtual void InstrumentWillBeginFrame() OVERRIDE; |
| 828 virtual void InstrumentDidBeginFrame() OVERRIDE; | 828 virtual void InstrumentDidBeginFrame() OVERRIDE; |
| 829 virtual void InstrumentDidCancelFrame() OVERRIDE; | 829 virtual void InstrumentDidCancelFrame() OVERRIDE; |
| 830 virtual void InstrumentWillComposite() OVERRIDE; | 830 virtual void InstrumentWillComposite() OVERRIDE; |
| 831 virtual bool AllowPartialSwap() const OVERRIDE; | 831 virtual bool AllowPartialSwap() const OVERRIDE; |
| 832 virtual void initializeLayerTreeView() OVERRIDE; | |
|
jamesr
2013/07/19 19:47:47
why is this lowercase? it looks like this isn't gr
| |
| 832 | 833 |
| 833 protected: | 834 protected: |
| 834 explicit RenderViewImpl(RenderViewImplParams* params); | 835 explicit RenderViewImpl(RenderViewImplParams* params); |
| 835 | 836 |
| 836 void Initialize(RenderViewImplParams* params); | 837 void Initialize(RenderViewImplParams* params); |
| 837 | 838 |
| 838 // Do not delete directly. This class is reference counted. | 839 // Do not delete directly. This class is reference counted. |
| 839 virtual ~RenderViewImpl(); | 840 virtual ~RenderViewImpl(); |
| 840 | 841 |
| 841 private: | 842 private: |
| (...skipping 732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1574 // use the Observer interface to filter IPC messages and receive frame change | 1575 // use the Observer interface to filter IPC messages and receive frame change |
| 1575 // notifications. | 1576 // notifications. |
| 1576 // --------------------------------------------------------------------------- | 1577 // --------------------------------------------------------------------------- |
| 1577 | 1578 |
| 1578 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1579 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1579 }; | 1580 }; |
| 1580 | 1581 |
| 1581 } // namespace content | 1582 } // namespace content |
| 1582 | 1583 |
| 1583 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1584 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |