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

Side by Side Diff: ui/gfx/render_text.cc

Issue 721843002: Disable RTHB on Mac when TOOLKIT_VIEWS isn't defined (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: use rthb in test Created 6 years, 1 month 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 | « no previous file | ui/gfx/render_text_unittest.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 #include "ui/gfx/render_text.h" 5 #include "ui/gfx/render_text.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <climits> 8 #include <climits>
9 9
10 #include "base/command_line.h" 10 #include "base/command_line.h"
(...skipping 380 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 paint->setAutohinted(params.autohinter); 391 paint->setAutohinted(params.autohinter);
392 paint->setHinting(FontRenderParamsHintingToSkPaintHinting(params.hinting)); 392 paint->setHinting(FontRenderParamsHintingToSkPaintHinting(params.hinting));
393 } 393 }
394 394
395 } // namespace internal 395 } // namespace internal
396 396
397 RenderText::~RenderText() { 397 RenderText::~RenderText() {
398 } 398 }
399 399
400 RenderText* RenderText::CreateInstance() { 400 RenderText* RenderText::CreateInstance() {
401 return CommandLine::ForCurrentProcess()->HasSwitch( 401 #if defined(OS_MACOSX) && !defined(TOOLKIT_VIEWS)
402 switches::kDisableHarfBuzzRenderText) ? CreateNativeInstance() : 402 static const bool use_harfbuzz = CommandLine::ForCurrentProcess()->
403 new RenderTextHarfBuzz; 403 HasSwitch(switches::kEnableHarfBuzzRenderText);
404 #else
405 static const bool use_harfbuzz = !CommandLine::ForCurrentProcess()->
406 HasSwitch(switches::kDisableHarfBuzzRenderText);
407 #endif
408 return use_harfbuzz ? new RenderTextHarfBuzz : CreateNativeInstance();
404 } 409 }
405 410
406 void RenderText::SetText(const base::string16& text) { 411 void RenderText::SetText(const base::string16& text) {
407 DCHECK(!composition_range_.IsValid()); 412 DCHECK(!composition_range_.IsValid());
408 if (text_ == text) 413 if (text_ == text)
409 return; 414 return;
410 text_ = text; 415 text_ = text;
411 416
412 // Adjust ranged styles and colors to accommodate a new text length. 417 // Adjust ranged styles and colors to accommodate a new text length.
413 // Clear style ranges as they might break new text graphemes and apply 418 // Clear style ranges as they might break new text graphemes and apply
(...skipping 984 matching lines...) Expand 10 before | Expand all | Expand 10 after
1398 SetDisplayOffset(display_offset_.x() + delta_x); 1403 SetDisplayOffset(display_offset_.x() + delta_x);
1399 } 1404 }
1400 1405
1401 void RenderText::DrawSelection(Canvas* canvas) { 1406 void RenderText::DrawSelection(Canvas* canvas) {
1402 const std::vector<Rect> sel = GetSubstringBounds(selection()); 1407 const std::vector<Rect> sel = GetSubstringBounds(selection());
1403 for (std::vector<Rect>::const_iterator i = sel.begin(); i < sel.end(); ++i) 1408 for (std::vector<Rect>::const_iterator i = sel.begin(); i < sel.end(); ++i)
1404 canvas->FillRect(*i, selection_background_focused_color_); 1409 canvas->FillRect(*i, selection_background_focused_color_);
1405 } 1410 }
1406 1411
1407 } // namespace gfx 1412 } // namespace gfx
OLDNEW
« no previous file with comments | « no previous file | ui/gfx/render_text_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698