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

Unified Diff: third_party/WebKit/Source/platform/graphics/filters/FilterOperations.h

Issue 1860903002: Update Source/platform/ to assume Oilpan only. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: back out ScrollAnimatorMac() accidental change Created 4 years, 8 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/platform/graphics/filters/FilterOperations.h
diff --git a/third_party/WebKit/Source/platform/graphics/filters/FilterOperations.h b/third_party/WebKit/Source/platform/graphics/filters/FilterOperations.h
index 6d6ca129f4e07b6110b474e6c9d90b1073c3d026..758d67e174df9845ee47ce3e9ddf9bdc95a57a34 100644
--- a/third_party/WebKit/Source/platform/graphics/filters/FilterOperations.h
+++ b/third_party/WebKit/Source/platform/graphics/filters/FilterOperations.h
@@ -37,11 +37,7 @@ namespace blink {
typedef IntRectOutsets FilterOutsets;
class PLATFORM_EXPORT FilterOperations {
-#if ENABLE(OILPAN)
DISALLOW_NEW();
-#else
- USING_FAST_MALLOC(FilterOperations);
-#endif
public:
FilterOperations();
FilterOperations(const FilterOperations& other) { *this = other; }
@@ -84,7 +80,6 @@ private:
FilterOperationVector m_operations;
};
-#if ENABLE(OILPAN)
// Wrapper object for the FilterOperations part object.
class FilterOperationsWrapper : public GarbageCollected<FilterOperationsWrapper> {
public:
@@ -114,7 +109,6 @@ private:
FilterOperations m_operations;
};
-#endif
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698