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

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

Issue 1865813002: Remove RawPtr from Source/web/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 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
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 #ifndef AudioOutputDeviceClientImpl_h 5 #ifndef AudioOutputDeviceClientImpl_h
6 #define AudioOutputDeviceClientImpl_h 6 #define AudioOutputDeviceClientImpl_h
7 7
8 #include "modules/audio_output_devices/AudioOutputDeviceClient.h" 8 #include "modules/audio_output_devices/AudioOutputDeviceClient.h"
9 #include "platform/heap/Handle.h" 9 #include "platform/heap/Handle.h"
10 10
11 namespace blink { 11 namespace blink {
12 12
13 class AudioOutputDeviceClientImpl : public GarbageCollectedFinalized<AudioOutput DeviceClientImpl>, public AudioOutputDeviceClient { 13 class AudioOutputDeviceClientImpl : public GarbageCollectedFinalized<AudioOutput DeviceClientImpl>, public AudioOutputDeviceClient {
14 USING_GARBAGE_COLLECTED_MIXIN(AudioOutputDeviceClientImpl); 14 USING_GARBAGE_COLLECTED_MIXIN(AudioOutputDeviceClientImpl);
15 WTF_MAKE_NONCOPYABLE(AudioOutputDeviceClientImpl); 15 WTF_MAKE_NONCOPYABLE(AudioOutputDeviceClientImpl);
16 public: 16 public:
17 static RawPtr<AudioOutputDeviceClientImpl> create(); 17 static AudioOutputDeviceClientImpl* create();
18 18
19 ~AudioOutputDeviceClientImpl() override; 19 ~AudioOutputDeviceClientImpl() override;
20 20
21 // AudioOutputDeviceClient implementation. 21 // AudioOutputDeviceClient implementation.
22 void checkIfAudioSinkExistsAndIsAuthorized(ExecutionContext*, const WebStrin g& sinkId, PassOwnPtr<WebSetSinkIdCallbacks>) override; 22 void checkIfAudioSinkExistsAndIsAuthorized(ExecutionContext*, const WebStrin g& sinkId, PassOwnPtr<WebSetSinkIdCallbacks>) override;
23 23
24 // GarbageCollectedFinalized implementation. 24 // GarbageCollectedFinalized implementation.
25 DEFINE_INLINE_VIRTUAL_TRACE() { AudioOutputDeviceClient::trace(visitor); } 25 DEFINE_INLINE_VIRTUAL_TRACE() { AudioOutputDeviceClient::trace(visitor); }
26 26
27 private: 27 private:
28 AudioOutputDeviceClientImpl(); 28 AudioOutputDeviceClientImpl();
29 }; 29 };
30 30
31 } // namespace blink 31 } // namespace blink
32 32
33 #endif // AudioOutputDeviceClientImpl_h 33 #endif // AudioOutputDeviceClientImpl_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/AssociatedURLLoader.cpp ('k') | third_party/WebKit/Source/web/AudioOutputDeviceClientImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698