diff options
author | pgal.u-szeged <pgal.u-szeged@partner.samsung.com> | 2014-10-29 05:34:30 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-29 12:34:54 +0000 |
commit | d84534d316a5fa519123b3b04d5b39991fc2ef0e (patch) | |
tree | 30c2e53026a311cc8251c280fa523d74847e9e4e /ash/audio | |
parent | 8234910957e14bde629d0310f18b6225f3f63bed (diff) | |
download | chromium_src-d84534d316a5fa519123b3b04d5b39991fc2ef0e.zip chromium_src-d84534d316a5fa519123b3b04d5b39991fc2ef0e.tar.gz chromium_src-d84534d316a5fa519123b3b04d5b39991fc2ef0e.tar.bz2 |
Prefix CommandLine usage with base namespace (Part 4: ash/)
Prefix all CommandLine usage in the ash/ directory with the
base:: namespace.
BUG=422426
Review URL: https://codereview.chromium.org/684783004
Cr-Commit-Position: refs/heads/master@{#301819}
Diffstat (limited to 'ash/audio')
-rw-r--r-- | ash/audio/sounds.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ash/audio/sounds.cc b/ash/audio/sounds.cc index ed1e5bf..b377e35 100644 --- a/ash/audio/sounds.cc +++ b/ash/audio/sounds.cc @@ -18,7 +18,7 @@ bool PlaySystemSoundAlways(media::SoundsManager::SoundKey key) { } bool PlaySystemSoundIfSpokenFeedback(SoundsManager::SoundKey key) { - CommandLine* cl = CommandLine::ForCurrentProcess(); + base::CommandLine* cl = base::CommandLine::ForCurrentProcess(); if (cl->HasSwitch(switches::kAshEnableSystemSounds)) return SoundsManager::Get()->Play(key); |