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

Unified Diff: third_party/WebKit/Source/core/dom/CompositorProxiedPropertySet.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/core/dom/CompositorProxiedPropertySet.h
diff --git a/third_party/WebKit/Source/core/dom/CompositorProxiedPropertySet.h b/third_party/WebKit/Source/core/dom/CompositorProxiedPropertySet.h
index 874b6ea883344f8f9eec27f476715129615f830d..73fd68e207723fd2d1b31d0a7d1a9efdd9dd0ff6 100644
--- a/third_party/WebKit/Source/core/dom/CompositorProxiedPropertySet.h
+++ b/third_party/WebKit/Source/core/dom/CompositorProxiedPropertySet.h
@@ -9,6 +9,7 @@
#include "wtf/Allocator.h"
#include "wtf/Forward.h"
#include "wtf/Noncopyable.h"
+#include <memory>
namespace blink {
@@ -17,7 +18,7 @@ class CompositorProxiedPropertySet final {
WTF_MAKE_NONCOPYABLE(CompositorProxiedPropertySet);
USING_FAST_MALLOC(CompositorProxiedPropertySet);
public:
- static PassOwnPtr<CompositorProxiedPropertySet> create();
+ static std::unique_ptr<CompositorProxiedPropertySet> create();
virtual ~CompositorProxiedPropertySet();
bool isEmpty() const;

Powered by Google App Engine
This is Rietveld 408576698