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

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

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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/CompositorProxiedPropertySet.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 13d089ab3337946c9d727e4b06d8f50e150afe41..f104ed4f2e5a315f7ba5803b39419509b4bc22a7 100644
--- a/third_party/WebKit/Source/core/dom/CompositorProxiedPropertySet.h
+++ b/third_party/WebKit/Source/core/dom/CompositorProxiedPropertySet.h
@@ -5,21 +5,21 @@
#ifndef CompositorProxiedPropertySet_h
#define CompositorProxiedPropertySet_h
-#include "platform/heap/Handle.h"
#include "public/platform/WebCompositorMutableProperties.h"
+#include "wtf/Allocator.h"
+#include "wtf/Forward.h"
+#include "wtf/Noncopyable.h"
namespace blink {
// Keeps track of the number of proxies bound to each property.
-class CompositorProxiedPropertySet final : public NoBaseWillBeGarbageCollectedFinalized<CompositorProxiedPropertySet> {
+class CompositorProxiedPropertySet final {
WTF_MAKE_NONCOPYABLE(CompositorProxiedPropertySet);
- USING_FAST_MALLOC_WILL_BE_REMOVED(CompositorProxiedPropertySet);
+ USING_FAST_MALLOC(CompositorProxiedPropertySet);
public:
- static PassOwnPtrWillBeRawPtr<CompositorProxiedPropertySet> create();
+ static PassOwnPtr<CompositorProxiedPropertySet> create();
virtual ~CompositorProxiedPropertySet();
- DEFINE_INLINE_TRACE() { }
-
bool isEmpty() const;
void increment(uint32_t mutableProperties);
void decrement(uint32_t mutableProperties);
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/CompositorProxiedPropertySet.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698