Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 "web/AudioOutputDeviceClientImpl.h" | 5 #include "modules/audio_output_devices/AudioOutputDeviceClientImpl.h" |
| 6 | 6 |
| 7 #include <memory> | |
|
dcheng
2017/05/05 04:54:52
Nit: newline after
slangley
2017/05/05 06:25:00
Done
| |
| 7 #include "core/dom/Document.h" | 8 #include "core/dom/Document.h" |
| 8 #include "core/dom/ExecutionContext.h" | 9 #include "core/dom/ExecutionContext.h" |
| 10 #include "core/frame/WebLocalFrameBase.h" | |
| 9 #include "public/web/WebFrameClient.h" | 11 #include "public/web/WebFrameClient.h" |
| 10 #include "web/WebLocalFrameImpl.h" | |
| 11 #include <memory> | |
| 12 | 12 |
| 13 namespace blink { | 13 namespace blink { |
| 14 | 14 |
| 15 AudioOutputDeviceClientImpl::AudioOutputDeviceClientImpl(LocalFrame& frame) | 15 AudioOutputDeviceClientImpl::AudioOutputDeviceClientImpl(LocalFrame& frame) |
| 16 : AudioOutputDeviceClient(frame) {} | 16 : AudioOutputDeviceClient(frame) {} |
| 17 | 17 |
| 18 AudioOutputDeviceClientImpl::~AudioOutputDeviceClientImpl() {} | 18 AudioOutputDeviceClientImpl::~AudioOutputDeviceClientImpl() {} |
| 19 | 19 |
| 20 void AudioOutputDeviceClientImpl::CheckIfAudioSinkExistsAndIsAuthorized( | 20 void AudioOutputDeviceClientImpl::CheckIfAudioSinkExistsAndIsAuthorized( |
| 21 ExecutionContext* context, | 21 ExecutionContext* context, |
| 22 const WebString& sink_id, | 22 const WebString& sink_id, |
| 23 std::unique_ptr<WebSetSinkIdCallbacks> callbacks) { | 23 std::unique_ptr<WebSetSinkIdCallbacks> callbacks) { |
| 24 DCHECK(context); | 24 DCHECK(context); |
| 25 DCHECK(context->IsDocument()); | 25 DCHECK(context->IsDocument()); |
| 26 Document* document = ToDocument(context); | 26 Document* document = ToDocument(context); |
| 27 WebLocalFrameImpl* web_frame = | 27 WebLocalFrameBase* web_frame = |
| 28 WebLocalFrameImpl::FromFrame(document->GetFrame()); | 28 WebLocalFrameBase::FromFrame(document->GetFrame()); |
| 29 web_frame->Client()->CheckIfAudioSinkExistsAndIsAuthorized( | 29 web_frame->Client()->CheckIfAudioSinkExistsAndIsAuthorized( |
| 30 sink_id, WebSecurityOrigin(context->GetSecurityOrigin()), | 30 sink_id, WebSecurityOrigin(context->GetSecurityOrigin()), |
| 31 callbacks.release()); | 31 callbacks.release()); |
| 32 } | 32 } |
| 33 | 33 |
| 34 } // namespace blink | 34 } // namespace blink |
| OLD | NEW |