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

Unified Diff: third_party/WebKit/Source/web/AudioOutputDeviceClientImpl.h

Issue 2863913002: Change AudioOutputDeviceClientImpl to use WebLocalFrameBase and move to modules. (Closed)
Patch Set: Use chrome client to create instances of WebLocalFrameBase. Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/web/AudioOutputDeviceClientImpl.h
diff --git a/third_party/WebKit/Source/web/AudioOutputDeviceClientImpl.h b/third_party/WebKit/Source/web/AudioOutputDeviceClientImpl.h
deleted file mode 100644
index 2c9be2a9d64faa31c0e36b3e7404474e2ac9b574..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/web/AudioOutputDeviceClientImpl.h
+++ /dev/null
@@ -1,40 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef AudioOutputDeviceClientImpl_h
-#define AudioOutputDeviceClientImpl_h
-
-#include "modules/audio_output_devices/AudioOutputDeviceClient.h"
-#include "platform/heap/Handle.h"
-#include <memory>
-
-namespace blink {
-
-class AudioOutputDeviceClientImpl
- : public GarbageCollectedFinalized<AudioOutputDeviceClientImpl>,
- public AudioOutputDeviceClient {
- USING_GARBAGE_COLLECTED_MIXIN(AudioOutputDeviceClientImpl);
- WTF_MAKE_NONCOPYABLE(AudioOutputDeviceClientImpl);
-
- public:
- explicit AudioOutputDeviceClientImpl(LocalFrame&);
-
- ~AudioOutputDeviceClientImpl() override;
-
- // AudioOutputDeviceClient implementation.
- void CheckIfAudioSinkExistsAndIsAuthorized(
- ExecutionContext*,
- const WebString& sink_id,
- std::unique_ptr<WebSetSinkIdCallbacks>) override;
-
- // GarbageCollectedFinalized implementation.
- DEFINE_INLINE_VIRTUAL_TRACE() { AudioOutputDeviceClient::Trace(visitor); }
-
- private:
- AudioOutputDeviceClientImpl();
-};
-
-} // namespace blink
-
-#endif // AudioOutputDeviceClientImpl_h

Powered by Google App Engine
This is Rietveld 408576698