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

Side by Side Diff: content/renderer/pepper/pepper_platform_audio_output_impl.h

Issue 10071038: RefCounted types should not have public destructors, content/browser part 2 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_AUDIO_OUTPUT_IMPL_H_ 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_AUDIO_OUTPUT_IMPL_H_
6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_AUDIO_OUTPUT_IMPL_H_ 6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_AUDIO_OUTPUT_IMPL_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "content/renderer/media/audio_message_filter.h" 10 #include "content/renderer/media/audio_message_filter.h"
11 #include "webkit/plugins/ppapi/plugin_delegate.h" 11 #include "webkit/plugins/ppapi/plugin_delegate.h"
12 12
13 namespace media{ 13 namespace media{
14 class AudioParameters; 14 class AudioParameters;
15 } 15 }
16 16
17 namespace base { 17 namespace base {
18 class MessageLoopProxy; 18 class MessageLoopProxy;
19 } 19 }
20 20
21 namespace content { 21 namespace content {
22 22
23 class PepperPlatformAudioOutputImpl 23 class PepperPlatformAudioOutputImpl
24 : public webkit::ppapi::PluginDelegate::PlatformAudioOutput, 24 : public webkit::ppapi::PluginDelegate::PlatformAudioOutput,
25 public AudioMessageFilter::Delegate, 25 public AudioMessageFilter::Delegate,
26 public base::RefCountedThreadSafe<PepperPlatformAudioOutputImpl> { 26 public base::RefCountedThreadSafe<PepperPlatformAudioOutputImpl> {
27 public: 27 public:
28 virtual ~PepperPlatformAudioOutputImpl();
29
30 // Factory function, returns NULL on failure. StreamCreated() will be called 28 // Factory function, returns NULL on failure. StreamCreated() will be called
31 // when the stream is created. 29 // when the stream is created.
32 static PepperPlatformAudioOutputImpl* Create( 30 static PepperPlatformAudioOutputImpl* Create(
33 int sample_rate, 31 int sample_rate,
34 int frames_per_buffer, 32 int frames_per_buffer,
35 webkit::ppapi::PluginDelegate::PlatformAudioOutputClient* client); 33 webkit::ppapi::PluginDelegate::PlatformAudioOutputClient* client);
36 34
37 // PlatformAudioOutput implementation (called on main thread). 35 // PlatformAudioOutput implementation (called on main thread).
38 virtual bool StartPlayback() OVERRIDE; 36 virtual bool StartPlayback() OVERRIDE;
39 virtual bool StopPlayback() OVERRIDE; 37 virtual bool StopPlayback() OVERRIDE;
40 virtual void ShutDown() OVERRIDE; 38 virtual void ShutDown() OVERRIDE;
41 39
42 private: 40 private:
41 friend class base::RefCountedThreadSafe<PepperPlatformAudioOutputImpl>;
42
43 PepperPlatformAudioOutputImpl(); 43 PepperPlatformAudioOutputImpl();
44 virtual ~PepperPlatformAudioOutputImpl();
44 45
45 bool Initialize( 46 bool Initialize(
46 int sample_rate, 47 int sample_rate,
47 int frames_per_buffer, 48 int frames_per_buffer,
48 webkit::ppapi::PluginDelegate::PlatformAudioOutputClient* client); 49 webkit::ppapi::PluginDelegate::PlatformAudioOutputClient* client);
49 50
50 // I/O thread backends to above functions. 51 // I/O thread backends to above functions.
51 void InitializeOnIOThread(const media::AudioParameters& params); 52 void InitializeOnIOThread(const media::AudioParameters& params);
52 void StartPlaybackOnIOThread(); 53 void StartPlaybackOnIOThread();
53 void StopPlaybackOnIOThread(); 54 void StopPlaybackOnIOThread();
(...skipping 18 matching lines...) Expand all
72 int32 stream_id_; 73 int32 stream_id_;
73 74
74 base::MessageLoopProxy* main_message_loop_proxy_; 75 base::MessageLoopProxy* main_message_loop_proxy_;
75 76
76 DISALLOW_COPY_AND_ASSIGN(PepperPlatformAudioOutputImpl); 77 DISALLOW_COPY_AND_ASSIGN(PepperPlatformAudioOutputImpl);
77 }; 78 };
78 79
79 } // namespace content 80 } // namespace content
80 81
81 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_AUDIO_OUTPUT_IMPL_H_ 82 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_AUDIO_OUTPUT_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698