HomeSort by relevance Sort by last modified time
    Searched defs:PepperPlatformAudioOutput (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/content/renderer/pepper/
pepper_platform_audio_output.h 24 class PepperPlatformAudioOutput
26 public base::RefCountedThreadSafe<PepperPlatformAudioOutput> {
30 static PepperPlatformAudioOutput* Create(int sample_rate,
58 virtual ~PepperPlatformAudioOutput();
61 friend class base::RefCountedThreadSafe<PepperPlatformAudioOutput>;
63 PepperPlatformAudioOutput();
87 DISALLOW_COPY_AND_ASSIGN(PepperPlatformAudioOutput);
pepper_platform_audio_output.cc 22 PepperPlatformAudioOutput* PepperPlatformAudioOutput::Create(
27 scoped_refptr<PepperPlatformAudioOutput> audio_output(
28 new PepperPlatformAudioOutput());
32 // PepperPlatformAudioOutput::ShutDownOnIOThread().
39 bool PepperPlatformAudioOutput::StartPlayback() {
43 base::Bind(&PepperPlatformAudioOutput::StartPlaybackOnIOThread, this));
49 bool PepperPlatformAudioOutput::StopPlayback() {
53 base::Bind(&PepperPlatformAudioOutput::StopPlaybackOnIOThread, this));
59 void PepperPlatformAudioOutput::ShutDown()
    [all...]

Completed in 421 milliseconds