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

Unified Diff: third_party/WebKit/Source/core/dom/CompositorProxiedPropertySet.cpp

Issue 1512473002: Oilpan: fix build after r363737. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: another include addition needed Created 5 years 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.cpp
diff --git a/third_party/WebKit/Source/core/dom/CompositorProxiedPropertySet.cpp b/third_party/WebKit/Source/core/dom/CompositorProxiedPropertySet.cpp
index 51a63bd64910964a318c320f6ecb436a0e8e2598..8f6a458a8e69f68a360e7d876918b64984f39851 100644
--- a/third_party/WebKit/Source/core/dom/CompositorProxiedPropertySet.cpp
+++ b/third_party/WebKit/Source/core/dom/CompositorProxiedPropertySet.cpp
@@ -4,12 +4,13 @@
#include "config.h"
#include "core/dom/CompositorProxiedPropertySet.h"
+#include "wtf/PassOwnPtr.h"
namespace blink {
-PassOwnPtrWillBeRawPtr<CompositorProxiedPropertySet> CompositorProxiedPropertySet::create()
+PassOwnPtr<CompositorProxiedPropertySet> CompositorProxiedPropertySet::create()
{
- return adoptPtrWillBeNoop(new CompositorProxiedPropertySet);
+ return adoptPtr(new CompositorProxiedPropertySet);
}
CompositorProxiedPropertySet::CompositorProxiedPropertySet()

Powered by Google App Engine
This is Rietveld 408576698