| 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 #include "content/renderer/pepper/pepper_platform_audio_input.h" | 5 #include "content/renderer/pepper/pepper_platform_audio_input.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/location.h" | 8 #include "base/location.h" |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/single_thread_task_runner.h" | 10 #include "base/single_thread_task_runner.h" |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 // Clean up the handles. | 109 // Clean up the handles. |
| 110 base::SyncSocket temp_socket(socket_handle); | 110 base::SyncSocket temp_socket(socket_handle); |
| 111 base::SharedMemory temp_shared_memory(handle, false); | 111 base::SharedMemory temp_shared_memory(handle, false); |
| 112 } | 112 } |
| 113 } | 113 } |
| 114 } | 114 } |
| 115 | 115 |
| 116 void PepperPlatformAudioInput::OnVolume(double volume) {} | 116 void PepperPlatformAudioInput::OnVolume(double volume) {} |
| 117 | 117 |
| 118 void PepperPlatformAudioInput::OnStateChanged( | 118 void PepperPlatformAudioInput::OnStateChanged( |
| 119 media::AudioInputIPCDelegate::State state) {} | 119 media::AudioInputIPCDelegateState state) {} |
| 120 | 120 |
| 121 void PepperPlatformAudioInput::OnIPCClosed() { ipc_.reset(); } | 121 void PepperPlatformAudioInput::OnIPCClosed() { ipc_.reset(); } |
| 122 | 122 |
| 123 PepperPlatformAudioInput::~PepperPlatformAudioInput() { | 123 PepperPlatformAudioInput::~PepperPlatformAudioInput() { |
| 124 // Make sure we have been shut down. Warning: this may happen on the I/O | 124 // Make sure we have been shut down. Warning: this may happen on the I/O |
| 125 // thread! | 125 // thread! |
| 126 // Although these members should be accessed on a specific thread (either the | 126 // Although these members should be accessed on a specific thread (either the |
| 127 // main thread or the I/O thread), it should be fine to examine their value | 127 // main thread or the I/O thread), it should be fine to examine their value |
| 128 // here. | 128 // here. |
| 129 DCHECK(!ipc_); | 129 DCHECK(!ipc_); |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 PepperMediaDeviceManager* PepperPlatformAudioInput::GetMediaDeviceManager() { | 281 PepperMediaDeviceManager* PepperPlatformAudioInput::GetMediaDeviceManager() { |
| 282 DCHECK(main_task_runner_->BelongsToCurrentThread()); | 282 DCHECK(main_task_runner_->BelongsToCurrentThread()); |
| 283 | 283 |
| 284 RenderFrameImpl* const render_frame = | 284 RenderFrameImpl* const render_frame = |
| 285 RenderFrameImpl::FromRoutingID(render_frame_id_); | 285 RenderFrameImpl::FromRoutingID(render_frame_id_); |
| 286 return render_frame ? | 286 return render_frame ? |
| 287 PepperMediaDeviceManager::GetForRenderFrame(render_frame).get() : NULL; | 287 PepperMediaDeviceManager::GetForRenderFrame(render_frame).get() : NULL; |
| 288 } | 288 } |
| 289 | 289 |
| 290 } // namespace content | 290 } // namespace content |
| OLD | NEW |