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,
59 virtual ~PepperPlatformAudioOutput();
62 friend class base::RefCountedThreadSafe<PepperPlatformAudioOutput>;
64 PepperPlatformAudioOutput();
89 DISALLOW_COPY_AND_ASSIGN(PepperPlatformAudioOutput);
pepper_platform_audio_output.cc 22 PepperPlatformAudioOutput* PepperPlatformAudioOutput::Create(
28 scoped_refptr<PepperPlatformAudioOutput> audio_output(
29 new PepperPlatformAudioOutput());
36 // PepperPlatformAudioOutput::ShutDownOnIOThread().
43 bool PepperPlatformAudioOutput::StartPlayback() {
47 base::Bind(&PepperPlatformAudioOutput::StartPlaybackOnIOThread, this));
53 bool PepperPlatformAudioOutput::StopPlayback() {
57 base::Bind(&PepperPlatformAudioOutput::StopPlaybackOnIOThread, this));
63 void PepperPlatformAudioOutput::ShutDown()
    [all...]

Completed in 39 milliseconds