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

Side by Side Diff: third_party/WebKit/Source/platform/graphics/filters/FETurbulence.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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2005, 2006, 2007 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2006, 2007 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org>
4 * Copyright (C) 2005 Eric Seidel <eric@webkit.org> 4 * Copyright (C) 2005 Eric Seidel <eric@webkit.org>
5 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> 5 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org>
6 * Copyright (C) 2010 Renata Hodovan <reni@inf.u-szeged.hu> 6 * Copyright (C) 2010 Renata Hodovan <reni@inf.u-szeged.hu>
7 * Copyright (C) 2013 Google Inc. All rights reserved. 7 * Copyright (C) 2013 Google Inc. All rights reserved.
8 * 8 *
9 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
(...skipping 21 matching lines...) Expand all
32 namespace blink { 32 namespace blink {
33 33
34 enum TurbulenceType { 34 enum TurbulenceType {
35 FETURBULENCE_TYPE_UNKNOWN = 0, 35 FETURBULENCE_TYPE_UNKNOWN = 0,
36 FETURBULENCE_TYPE_FRACTALNOISE = 1, 36 FETURBULENCE_TYPE_FRACTALNOISE = 1,
37 FETURBULENCE_TYPE_TURBULENCE = 2 37 FETURBULENCE_TYPE_TURBULENCE = 2
38 }; 38 };
39 39
40 class PLATFORM_EXPORT FETurbulence final : public FilterEffect { 40 class PLATFORM_EXPORT FETurbulence final : public FilterEffect {
41 public: 41 public:
42 static RawPtr<FETurbulence> create(Filter*, TurbulenceType, float, float, in t, float, bool); 42 static FETurbulence* create(Filter*, TurbulenceType, float, float, int, floa t, bool);
43 43
44 TurbulenceType type() const; 44 TurbulenceType type() const;
45 bool setType(TurbulenceType); 45 bool setType(TurbulenceType);
46 46
47 float baseFrequencyY() const; 47 float baseFrequencyY() const;
48 bool setBaseFrequencyY(float); 48 bool setBaseFrequencyY(float);
49 49
50 float baseFrequencyX() const; 50 float baseFrequencyX() const;
51 bool setBaseFrequencyX(float); 51 bool setBaseFrequencyX(float);
52 52
(...skipping 18 matching lines...) Expand all
71 float m_baseFrequencyX; 71 float m_baseFrequencyX;
72 float m_baseFrequencyY; 72 float m_baseFrequencyY;
73 int m_numOctaves; 73 int m_numOctaves;
74 float m_seed; 74 float m_seed;
75 bool m_stitchTiles; 75 bool m_stitchTiles;
76 }; 76 };
77 77
78 } // namespace blink 78 } // namespace blink
79 79
80 #endif // FETurbulence_h 80 #endif // FETurbulence_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698