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

Side by Side Diff: media/audio/pulse/audio_manager_pulse.cc

Issue 12316090: Remove forwarding include for base/files/file_path except for MTPD. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 9 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/test/base/chrome_test_launcher.cc ('k') | remoting/host/host_main.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "media/audio/pulse/audio_manager_pulse.h" 5 #include "media/audio/pulse/audio_manager_pulse.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/environment.h" 8 #include "base/environment.h"
9 #include "base/file_path.h" 9 #include "base/files/file_path.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/nix/xdg_util.h" 11 #include "base/nix/xdg_util.h"
12 #include "base/process_util.h" 12 #include "base/process_util.h"
13 #include "base/stl_util.h" 13 #include "base/stl_util.h"
14 #include "media/audio/audio_util.h" 14 #include "media/audio/audio_util.h"
15 #include "media/audio/linux/audio_manager_linux.h" 15 #include "media/audio/linux/audio_manager_linux.h"
16 #include "media/audio/pulse/pulse_input.h" 16 #include "media/audio/pulse/pulse_input.h"
17 #include "media/audio/pulse/pulse_output.h" 17 #include "media/audio/pulse/pulse_output.h"
18 #include "media/audio/pulse/pulse_stubs.h" 18 #include "media/audio/pulse/pulse_stubs.h"
19 #include "media/audio/pulse/pulse_util.h" 19 #include "media/audio/pulse/pulse_util.h"
(...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after
252 void AudioManagerPulse::SampleRateInfoCallback(pa_context* context, 252 void AudioManagerPulse::SampleRateInfoCallback(pa_context* context,
253 const pa_server_info* info, 253 const pa_server_info* info,
254 void* user_data) { 254 void* user_data) {
255 AudioManagerPulse* manager = reinterpret_cast<AudioManagerPulse*>(user_data); 255 AudioManagerPulse* manager = reinterpret_cast<AudioManagerPulse*>(user_data);
256 256
257 manager->native_input_sample_rate_ = info->sample_spec.rate; 257 manager->native_input_sample_rate_ = info->sample_spec.rate;
258 pa_threaded_mainloop_signal(manager->input_mainloop_, 0); 258 pa_threaded_mainloop_signal(manager->input_mainloop_, 0);
259 } 259 }
260 260
261 } // namespace media 261 } // namespace media
OLDNEW
« no previous file with comments | « chrome/test/base/chrome_test_launcher.cc ('k') | remoting/host/host_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698