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

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

Issue 2050123002: Remove OwnPtr from Blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: First attempt to land. Created 4 years, 6 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
index 62e6da519a713558df6d45374f714dd33a692766..b8bd34cbf658843c8d26888ff07a9224eed1d480 100644
--- a/third_party/WebKit/Source/web/AudioOutputDeviceClientImpl.h
+++ b/third_party/WebKit/Source/web/AudioOutputDeviceClientImpl.h
@@ -7,6 +7,7 @@
#include "modules/audio_output_devices/AudioOutputDeviceClient.h"
#include "platform/heap/Handle.h"
+#include <memory>
namespace blink {
@@ -19,7 +20,7 @@ public:
~AudioOutputDeviceClientImpl() override;
// AudioOutputDeviceClient implementation.
- void checkIfAudioSinkExistsAndIsAuthorized(ExecutionContext*, const WebString& sinkId, PassOwnPtr<WebSetSinkIdCallbacks>) override;
+ void checkIfAudioSinkExistsAndIsAuthorized(ExecutionContext*, const WebString& sinkId, std::unique_ptr<WebSetSinkIdCallbacks>) override;
// GarbageCollectedFinalized implementation.
DEFINE_INLINE_VIRTUAL_TRACE() { AudioOutputDeviceClient::trace(visitor); }

Powered by Google App Engine
This is Rietveld 408576698