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

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

Issue 1455943002: [Oilpan] Prepare full definition of classes before using Member (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: CORE_EXPORT Created 5 years, 1 month 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/Filter.h
diff --git a/third_party/WebKit/Source/platform/graphics/filters/Filter.h b/third_party/WebKit/Source/platform/graphics/filters/Filter.h
index a89510d7a13cf58d046a2c2cee009965f54e9eb4..74b7b47145dc0da0ffc3ebf664c73f068005aa53 100644
--- a/third_party/WebKit/Source/platform/graphics/filters/Filter.h
+++ b/third_party/WebKit/Source/platform/graphics/filters/Filter.h
@@ -30,8 +30,8 @@
namespace blink {
-class SourceGraphic;
class FilterEffect;
+class SourceGraphic;
class PLATFORM_EXPORT Filter final : public RefCountedWillBeGarbageCollectedFinalized<Filter> {
public:
@@ -61,9 +61,9 @@ public:
const FloatRect& referenceBox() const { return m_referenceBox; }
void setLastEffect(PassRefPtrWillBeRawPtr<FilterEffect>);
- FilterEffect* lastEffect() const { return m_lastEffect.get(); }
+ FilterEffect* lastEffect() const;
- SourceGraphic* sourceGraphic() const { return m_sourceGraphic.get(); }
+ SourceGraphic* sourceGraphic() const;
private:
Filter(const FloatRect& referenceBox, const FloatRect& filterRegion, float scale, UnitScaling);

Powered by Google App Engine
This is Rietveld 408576698