summaryrefslogtreecommitdiffstats
path: root/ash/audio
diff options
context:
space:
mode:
authorpgal.u-szeged <pgal.u-szeged@partner.samsung.com>2014-10-29 05:34:30 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-29 12:34:54 +0000
commitd84534d316a5fa519123b3b04d5b39991fc2ef0e (patch)
tree30c2e53026a311cc8251c280fa523d74847e9e4e /ash/audio
parent8234910957e14bde629d0310f18b6225f3f63bed (diff)
downloadchromium_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.cc2
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);