Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Side by Side Diff: ui/gfx/render_text_mac.h

Issue 867003002: Cache gfx::RenderText instances in views::Label. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ui/gfx/render_text_harfbuzz.cc ('k') | ui/gfx/render_text_mac.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 UI_GFX_RENDER_TEXT_MAC_H_ 5 #ifndef UI_GFX_RENDER_TEXT_MAC_H_
6 #define UI_GFX_RENDER_TEXT_MAC_H_ 6 #define UI_GFX_RENDER_TEXT_MAC_H_
7 7
8 #include <ApplicationServices/ApplicationServices.h> 8 #include <ApplicationServices/ApplicationServices.h>
9 9
10 #include <string> 10 #include <string>
(...skipping 10 matching lines...) Expand all
21 // 21 //
22 // Note: The current implementation only supports drawing and sizing the text, 22 // Note: The current implementation only supports drawing and sizing the text,
23 // but not text selection or cursor movement. 23 // but not text selection or cursor movement.
24 class GFX_EXPORT RenderTextMac : public RenderText { 24 class GFX_EXPORT RenderTextMac : public RenderText {
25 public: 25 public:
26 RenderTextMac(); 26 RenderTextMac();
27 ~RenderTextMac() override; 27 ~RenderTextMac() override;
28 28
29 // RenderText: 29 // RenderText:
30 scoped_ptr<RenderText> CreateInstanceOfSameType() const override; 30 scoped_ptr<RenderText> CreateInstanceOfSameType() const override;
31 bool MultilineSupported() const override;
31 const base::string16& GetDisplayText() override; 32 const base::string16& GetDisplayText() override;
32 Size GetStringSize() override; 33 Size GetStringSize() override;
33 SizeF GetStringSizeF() override; 34 SizeF GetStringSizeF() override;
34 SelectionModel FindCursorPosition(const Point& point) override; 35 SelectionModel FindCursorPosition(const Point& point) override;
35 std::vector<FontSpan> GetFontSpansForTesting() override; 36 std::vector<FontSpan> GetFontSpansForTesting() override;
36 37
37 protected: 38 protected:
38 // RenderText: 39 // RenderText:
39 int GetDisplayTextBaseline() override; 40 int GetDisplayTextBaseline() override;
40 SelectionModel AdjacentCharSelectionModel( 41 SelectionModel AdjacentCharSelectionModel(
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 119
119 // Indicates that |runs_| are valid, set by |ComputeRuns()|. 120 // Indicates that |runs_| are valid, set by |ComputeRuns()|.
120 bool runs_valid_; 121 bool runs_valid_;
121 122
122 DISALLOW_COPY_AND_ASSIGN(RenderTextMac); 123 DISALLOW_COPY_AND_ASSIGN(RenderTextMac);
123 }; 124 };
124 125
125 } // namespace gfx 126 } // namespace gfx
126 127
127 #endif // UI_GFX_RENDER_TEXT_MAC_H_ 128 #endif // UI_GFX_RENDER_TEXT_MAC_H_
OLDNEW
« no previous file with comments | « ui/gfx/render_text_harfbuzz.cc ('k') | ui/gfx/render_text_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698