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

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, 10 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
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 // Note: The current implementation only supports drawing and sizing the text, 21 // Note: The current implementation only supports drawing and sizing the text,
22 // but not text selection or cursor movement. 22 // but not text selection or cursor movement.
23 class RenderTextMac : public RenderText { 23 class RenderTextMac : public RenderText {
24 public: 24 public:
25 RenderTextMac(); 25 RenderTextMac();
26 ~RenderTextMac() override; 26 ~RenderTextMac() override;
27 27
28 // RenderText: 28 // RenderText:
29 scoped_ptr<RenderText> CreateInstanceOfSameType() const override; 29 scoped_ptr<RenderText> CreateInstanceOfSameType() const override;
30 const base::string16& GetDisplayText() override; 30 const base::string16& GetDisplayText() override;
31 bool MultilineSupported() const override;
31 Size GetStringSize() override; 32 Size GetStringSize() override;
32 SizeF GetStringSizeF() override; 33 SizeF GetStringSizeF() override;
33 SelectionModel FindCursorPosition(const Point& point) override; 34 SelectionModel FindCursorPosition(const Point& point) override;
34 std::vector<FontSpan> GetFontSpansForTesting() override; 35 std::vector<FontSpan> GetFontSpansForTesting() override;
35 36
36 protected: 37 protected:
37 // RenderText: 38 // RenderText:
38 int GetDisplayTextBaseline() override; 39 int GetDisplayTextBaseline() override;
39 SelectionModel AdjacentCharSelectionModel( 40 SelectionModel AdjacentCharSelectionModel(
40 const SelectionModel& selection, 41 const SelectionModel& selection,
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 97
97 // Indicates that |runs_| are valid, set by |ComputeRuns()|. 98 // Indicates that |runs_| are valid, set by |ComputeRuns()|.
98 bool runs_valid_; 99 bool runs_valid_;
99 100
100 DISALLOW_COPY_AND_ASSIGN(RenderTextMac); 101 DISALLOW_COPY_AND_ASSIGN(RenderTextMac);
101 }; 102 };
102 103
103 } // namespace gfx 104 } // namespace gfx
104 105
105 #endif // UI_GFX_RENDER_TEXT_MAC_H_ 106 #endif // UI_GFX_RENDER_TEXT_MAC_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698