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

Side by Side Diff: third_party/WebKit/Source/web/AudioOutputDeviceClientImpl.cpp

Issue 2614143002: Use a new Supplement constructor for LocalFrame's supplements (Closed)
Patch Set: Created 3 years, 11 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
OLDNEW
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 "web/AudioOutputDeviceClientImpl.h"
6 6
7 #include "core/dom/Document.h" 7 #include "core/dom/Document.h"
8 #include "core/dom/ExecutionContext.h" 8 #include "core/dom/ExecutionContext.h"
9 #include "public/web/WebFrameClient.h" 9 #include "public/web/WebFrameClient.h"
10 #include "web/WebLocalFrameImpl.h" 10 #include "web/WebLocalFrameImpl.h"
11 #include <memory> 11 #include <memory>
12 12
13 namespace blink { 13 namespace blink {
14 14
15 AudioOutputDeviceClientImpl* AudioOutputDeviceClientImpl::create() { 15 AudioOutputDeviceClientImpl::AudioOutputDeviceClientImpl(LocalFrame& frame)
16 return new AudioOutputDeviceClientImpl(); 16 : AudioOutputDeviceClient(frame) {}
17 }
18
19 AudioOutputDeviceClientImpl::AudioOutputDeviceClientImpl() {}
20 17
21 AudioOutputDeviceClientImpl::~AudioOutputDeviceClientImpl() {} 18 AudioOutputDeviceClientImpl::~AudioOutputDeviceClientImpl() {}
22 19
23 void AudioOutputDeviceClientImpl::checkIfAudioSinkExistsAndIsAuthorized( 20 void AudioOutputDeviceClientImpl::checkIfAudioSinkExistsAndIsAuthorized(
24 ExecutionContext* context, 21 ExecutionContext* context,
25 const WebString& sinkId, 22 const WebString& sinkId,
26 std::unique_ptr<WebSetSinkIdCallbacks> callbacks) { 23 std::unique_ptr<WebSetSinkIdCallbacks> callbacks) {
27 DCHECK(context); 24 DCHECK(context);
28 DCHECK(context->isDocument()); 25 DCHECK(context->isDocument());
29 Document* document = toDocument(context); 26 Document* document = toDocument(context);
30 WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(document->frame()); 27 WebLocalFrameImpl* webFrame = WebLocalFrameImpl::fromFrame(document->frame());
31 webFrame->client()->checkIfAudioSinkExistsAndIsAuthorized( 28 webFrame->client()->checkIfAudioSinkExistsAndIsAuthorized(
32 sinkId, WebSecurityOrigin(context->getSecurityOrigin()), 29 sinkId, WebSecurityOrigin(context->getSecurityOrigin()),
33 callbacks.release()); 30 callbacks.release());
34 } 31 }
35 32
36 } // namespace blink 33 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698