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

Side by Side Diff: third_party/WebKit/Source/platform/graphics/filters/FEComposite.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) 2013 Google Inc. All rights reserved. 5 * Copyright (C) 2013 Google Inc. All rights reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 23 matching lines...) Expand all
34 FECOMPOSITE_OPERATOR_IN = 2, 34 FECOMPOSITE_OPERATOR_IN = 2,
35 FECOMPOSITE_OPERATOR_OUT = 3, 35 FECOMPOSITE_OPERATOR_OUT = 3,
36 FECOMPOSITE_OPERATOR_ATOP = 4, 36 FECOMPOSITE_OPERATOR_ATOP = 4,
37 FECOMPOSITE_OPERATOR_XOR = 5, 37 FECOMPOSITE_OPERATOR_XOR = 5,
38 FECOMPOSITE_OPERATOR_ARITHMETIC = 6, 38 FECOMPOSITE_OPERATOR_ARITHMETIC = 6,
39 FECOMPOSITE_OPERATOR_LIGHTER = 7 39 FECOMPOSITE_OPERATOR_LIGHTER = 7
40 }; 40 };
41 41
42 class PLATFORM_EXPORT FEComposite final : public FilterEffect { 42 class PLATFORM_EXPORT FEComposite final : public FilterEffect {
43 public: 43 public:
44 static RawPtr<FEComposite> create(Filter*, const CompositeOperationType&, fl oat, float, float, float); 44 static FEComposite* create(Filter*, const CompositeOperationType&, float, fl oat, float, float);
45 45
46 CompositeOperationType operation() const; 46 CompositeOperationType operation() const;
47 bool setOperation(CompositeOperationType); 47 bool setOperation(CompositeOperationType);
48 48
49 float k1() const; 49 float k1() const;
50 bool setK1(float); 50 bool setK1(float);
51 51
52 float k2() const; 52 float k2() const;
53 bool setK2(float); 53 bool setK2(float);
54 54
(...skipping 20 matching lines...) Expand all
75 CompositeOperationType m_type; 75 CompositeOperationType m_type;
76 float m_k1; 76 float m_k1;
77 float m_k2; 77 float m_k2;
78 float m_k3; 78 float m_k3;
79 float m_k4; 79 float m_k4;
80 }; 80 };
81 81
82 } // namespace blink 82 } // namespace blink
83 83
84 #endif // FEComposite_h 84 #endif // FEComposite_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698