| OLD | NEW |
| 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_INPUT_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_AUDIO_INPUT_H_ |
| 6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_AUDIO_INPUT_H_ | 6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_AUDIO_INPUT_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 int frames_per_buffer, | 51 int frames_per_buffer, |
| 52 PepperAudioInputHost* client); | 52 PepperAudioInputHost* client); |
| 53 | 53 |
| 54 // Called on main thread. | 54 // Called on main thread. |
| 55 void StartCapture(); | 55 void StartCapture(); |
| 56 void StopCapture(); | 56 void StopCapture(); |
| 57 // Closes the stream. Make sure to call this before the object is destructed. | 57 // Closes the stream. Make sure to call this before the object is destructed. |
| 58 void ShutDown(); | 58 void ShutDown(); |
| 59 | 59 |
| 60 // media::AudioInputIPCDelegate. | 60 // media::AudioInputIPCDelegate. |
| 61 virtual void OnStreamCreated(base::SharedMemoryHandle handle, | 61 void OnStreamCreated(base::SharedMemoryHandle handle, |
| 62 base::SyncSocket::Handle socket_handle, | 62 base::SyncSocket::Handle socket_handle, |
| 63 int length, | 63 int length, |
| 64 int total_segments) override; | 64 int total_segments) override; |
| 65 virtual void OnVolume(double volume) override; | 65 void OnVolume(double volume) override; |
| 66 virtual void OnStateChanged(media::AudioInputIPCDelegate::State state) | 66 void OnStateChanged(media::AudioInputIPCDelegate::State state) override; |
| 67 override; | 67 void OnIPCClosed() override; |
| 68 virtual void OnIPCClosed() override; | |
| 69 | 68 |
| 70 protected: | 69 protected: |
| 71 virtual ~PepperPlatformAudioInput(); | 70 ~PepperPlatformAudioInput() override; |
| 72 | 71 |
| 73 private: | 72 private: |
| 74 friend class base::RefCountedThreadSafe<PepperPlatformAudioInput>; | 73 friend class base::RefCountedThreadSafe<PepperPlatformAudioInput>; |
| 75 | 74 |
| 76 PepperPlatformAudioInput(); | 75 PepperPlatformAudioInput(); |
| 77 | 76 |
| 78 bool Initialize(int render_frame_id, | 77 bool Initialize(int render_frame_id, |
| 79 const std::string& device_id, | 78 const std::string& device_id, |
| 80 const GURL& document_url, | 79 const GURL& document_url, |
| 81 int sample_rate, | 80 int sample_rate, |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 bool pending_open_device_; | 126 bool pending_open_device_; |
| 128 // THIS MUST ONLY BE ACCESSED ON THE MAIN THREAD. | 127 // THIS MUST ONLY BE ACCESSED ON THE MAIN THREAD. |
| 129 int pending_open_device_id_; | 128 int pending_open_device_id_; |
| 130 | 129 |
| 131 DISALLOW_COPY_AND_ASSIGN(PepperPlatformAudioInput); | 130 DISALLOW_COPY_AND_ASSIGN(PepperPlatformAudioInput); |
| 132 }; | 131 }; |
| 133 | 132 |
| 134 } // namespace content | 133 } // namespace content |
| 135 | 134 |
| 136 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_AUDIO_INPUT_H_ | 135 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLATFORM_AUDIO_INPUT_H_ |
| OLD | NEW |