| OLD | NEW |
| 1 // |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 // 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 | 3 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 4 // found in the LICENSE file. |
| 4 | 5 |
| 5 #ifndef UI_GFX_RENDER_TEXT_H_ | 6 #ifndef UI_GFX_RENDER_TEXT_H_ |
| 6 #define UI_GFX_RENDER_TEXT_H_ | 7 #define UI_GFX_RENDER_TEXT_H_ |
| 7 | 8 |
| 8 #include <stddef.h> | 9 #include <stddef.h> |
| 9 #include <stdint.h> | 10 #include <stdint.h> |
| 10 | 11 |
| (...skipping 846 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 857 // Lines computed by EnsureLayout. These should be invalidated upon | 858 // Lines computed by EnsureLayout. These should be invalidated upon |
| 858 // OnLayoutTextAttributeChanged and OnDisplayTextAttributeChanged calls. | 859 // OnLayoutTextAttributeChanged and OnDisplayTextAttributeChanged calls. |
| 859 std::vector<internal::Line> lines_; | 860 std::vector<internal::Line> lines_; |
| 860 | 861 |
| 861 DISALLOW_COPY_AND_ASSIGN(RenderText); | 862 DISALLOW_COPY_AND_ASSIGN(RenderText); |
| 862 }; | 863 }; |
| 863 | 864 |
| 864 } // namespace gfx | 865 } // namespace gfx |
| 865 | 866 |
| 866 #endif // UI_GFX_RENDER_TEXT_H_ | 867 #endif // UI_GFX_RENDER_TEXT_H_ |
| OLD | NEW |