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

Side by Side Diff: third_party/WebKit/Source/platform/graphics/filters/FETurbulence.cpp

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) 2011 Gabor Loki <loki@webkit.org> 7 * Copyright (C) 2011 Gabor Loki <loki@webkit.org>
8 * Copyright (C) 2013 Google Inc. All rights reserved. 8 * Copyright (C) 2013 Google Inc. All rights reserved.
9 * 9 *
10 * This library is free software; you can redistribute it and/or 10 * This library is free software; you can redistribute it and/or
(...skipping 26 matching lines...) Expand all
37 : FilterEffect(filter) 37 : FilterEffect(filter)
38 , m_type(type) 38 , m_type(type)
39 , m_baseFrequencyX(baseFrequencyX) 39 , m_baseFrequencyX(baseFrequencyX)
40 , m_baseFrequencyY(baseFrequencyY) 40 , m_baseFrequencyY(baseFrequencyY)
41 , m_numOctaves(numOctaves) 41 , m_numOctaves(numOctaves)
42 , m_seed(seed) 42 , m_seed(seed)
43 , m_stitchTiles(stitchTiles) 43 , m_stitchTiles(stitchTiles)
44 { 44 {
45 } 45 }
46 46
47 RawPtr<FETurbulence> FETurbulence::create(Filter* filter, TurbulenceType type, f loat baseFrequencyX, float baseFrequencyY, int numOctaves, float seed, bool stit chTiles) 47 FETurbulence* FETurbulence::create(Filter* filter, TurbulenceType type, float ba seFrequencyX, float baseFrequencyY, int numOctaves, float seed, bool stitchTiles )
48 { 48 {
49 return new FETurbulence(filter, type, baseFrequencyX, baseFrequencyY, numOct aves, seed, stitchTiles); 49 return new FETurbulence(filter, type, baseFrequencyX, baseFrequencyY, numOct aves, seed, stitchTiles);
50 } 50 }
51 51
52 TurbulenceType FETurbulence::type() const 52 TurbulenceType FETurbulence::type() const
53 { 53 {
54 return m_type; 54 return m_type;
55 } 55 }
56 56
57 bool FETurbulence::setType(TurbulenceType type) 57 bool FETurbulence::setType(TurbulenceType type)
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 FilterEffect::externalRepresentation(ts); 180 FilterEffect::externalRepresentation(ts);
181 ts << " type=\"" << type() << "\" " 181 ts << " type=\"" << type() << "\" "
182 << "baseFrequency=\"" << baseFrequencyX() << ", " << baseFrequencyY() << "\" " 182 << "baseFrequency=\"" << baseFrequencyX() << ", " << baseFrequencyY() << "\" "
183 << "seed=\"" << seed() << "\" " 183 << "seed=\"" << seed() << "\" "
184 << "numOctaves=\"" << numOctaves() << "\" " 184 << "numOctaves=\"" << numOctaves() << "\" "
185 << "stitchTiles=\"" << stitchTiles() << "\"]\n"; 185 << "stitchTiles=\"" << stitchTiles() << "\"]\n";
186 return ts; 186 return ts;
187 } 187 }
188 188
189 } // namespace blink 189 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698