| Index: ui/gfx/render_text.h
|
| diff --git a/ui/gfx/render_text.h b/ui/gfx/render_text.h
|
| index 8c8ced422409c074f8e12931f424c1ecce64556a..9265d9d0166b804aaeaeb5c9e19defb634d560c3 100644
|
| --- a/ui/gfx/render_text.h
|
| +++ b/ui/gfx/render_text.h
|
| @@ -64,6 +64,7 @@ class GFX_EXPORT SkiaTextRenderer {
|
| void SetTextSize(SkScalar size);
|
| void SetForegroundColor(SkColor foreground);
|
| void SetShader(sk_sp<SkShader> shader);
|
| + void SetHaloEffect();
|
| // Sets underline metrics to use if the text will be drawn with an underline.
|
| // If not set, default values based on the size of the text will be used. The
|
| // two metrics must be set together.
|
| @@ -315,6 +316,9 @@ class GFX_EXPORT RenderText {
|
| subpixel_rendering_suppressed_ = suppressed;
|
| }
|
|
|
| + bool halo_effect() const { return halo_effect_; }
|
| + void set_halo_effect(bool halo_effect) { halo_effect_ = halo_effect; }
|
| +
|
| const SelectionModel& selection_model() const { return selection_model_; }
|
|
|
| const Range& selection() const { return selection_model_.selection(); }
|
| @@ -839,6 +843,9 @@ class GFX_EXPORT RenderText {
|
| // A list of valid display text line break positions.
|
| BreakList<size_t> line_breaks_;
|
|
|
| + // Draw text with 1px border.
|
| + bool halo_effect_ = false;
|
| +
|
| // Lines computed by EnsureLayout. These should be invalidated upon
|
| // OnLayoutTextAttributeChanged and OnDisplayTextAttributeChanged calls.
|
| std::vector<internal::Line> lines_;
|
|
|