diff options
author | avi <avi@chromium.org> | 2014-12-22 21:51:23 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-12-23 05:52:27 +0000 |
commit | 6b10fd03dd0b8ddb91235c49d3f498fb2002c20d (patch) | |
tree | d7aab532283c818d2103fc9b5ca8bcf29d50b2c8 /ui/gfx/win | |
parent | b126eb8f934f25877b0e6d992902e88eac3fec7f (diff) | |
download | chromium_src-6b10fd03dd0b8ddb91235c49d3f498fb2002c20d.zip chromium_src-6b10fd03dd0b8ddb91235c49d3f498fb2002c20d.tar.gz chromium_src-6b10fd03dd0b8ddb91235c49d3f498fb2002c20d.tar.bz2 |
Make callers of CommandLine use it via the base:: namespace.
Covers testing/, tools/, ui/, and win8/.
BUG=422426
TEST=none
TBR=ben@chromium.org
Review URL: https://codereview.chromium.org/819223002
Cr-Commit-Position: refs/heads/master@{#309538}
Diffstat (limited to 'ui/gfx/win')
-rw-r--r-- | ui/gfx/win/direct_write.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/gfx/win/direct_write.cc b/ui/gfx/win/direct_write.cc index 2153f2c..8b313af 100644 --- a/ui/gfx/win/direct_write.cc +++ b/ui/gfx/win/direct_write.cc @@ -64,9 +64,9 @@ void MaybeInitializeDirectWrite() { tried_dwrite_initialize = true; if (!ShouldUseDirectWrite() || - CommandLine::ForCurrentProcess()->HasSwitch( + base::CommandLine::ForCurrentProcess()->HasSwitch( switches::kDisableDirectWriteForUI) || - CommandLine::ForCurrentProcess()->HasSwitch( + base::CommandLine::ForCurrentProcess()->HasSwitch( switches::kDisableHarfBuzzRenderText)) { return; } |