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

Unified Diff: media/audio/win/audio_manager_win.cc

Issue 7351003: Clean up users of a deprecated base::LaunchApp API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: win-only Created 9 years, 5 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 | « media/audio/linux/audio_manager_linux.cc ('k') | net/disk_cache/stress_cache.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/audio/win/audio_manager_win.cc
diff --git a/media/audio/win/audio_manager_win.cc b/media/audio/win/audio_manager_win.cc
index 6406b21aa8a1ad9e4526cc072771ffc13deb8f40..9a882f8de5d3cc3f0550536581d217abecab45e7 100644
--- a/media/audio/win/audio_manager_win.cc
+++ b/media/audio/win/audio_manager_win.cc
@@ -250,7 +250,8 @@ void AudioManagerWin::ShowAudioInputSettings() {
path = path.Append(program);
CommandLine command_line(path);
command_line.AppendArg(argument);
- base::LaunchApp(command_line, false, false, NULL);
+ base::LaunchOptions options;
+ base::LaunchProcess(command_line, options);
}
void AudioManagerWin::GetAudioInputDeviceNames(
« no previous file with comments | « media/audio/linux/audio_manager_linux.cc ('k') | net/disk_cache/stress_cache.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698