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

Unified Diff: ash/audio/sounds.cc

Issue 684783004: Prefix CommandLine usage with base namespace (Part 4: ash/) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 6 years, 2 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/ash_touch_exploration_manager_chromeos.cc ('k') | ash/display/display_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/audio/sounds.cc
diff --git a/ash/audio/sounds.cc b/ash/audio/sounds.cc
index ed1e5bf791245ad6755d7ade8ff16974f90bc4f2..b377e35293634030e42a0013fe916e467fb1ec37 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);
« no previous file with comments | « ash/ash_touch_exploration_manager_chromeos.cc ('k') | ash/display/display_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698