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

Side by Side Diff: third_party/WebKit/Source/platform/graphics/filters/FEFlood.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) 2013 Google Inc. All rights reserved. 6 * Copyright (C) 2013 Google Inc. All rights reserved.
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 20 matching lines...) Expand all
31 namespace blink { 31 namespace blink {
32 32
33 FEFlood::FEFlood(Filter* filter, const Color& floodColor, float floodOpacity) 33 FEFlood::FEFlood(Filter* filter, const Color& floodColor, float floodOpacity)
34 : FilterEffect(filter) 34 : FilterEffect(filter)
35 , m_floodColor(floodColor) 35 , m_floodColor(floodColor)
36 , m_floodOpacity(floodOpacity) 36 , m_floodOpacity(floodOpacity)
37 { 37 {
38 FilterEffect::setOperatingColorSpace(ColorSpaceDeviceRGB); 38 FilterEffect::setOperatingColorSpace(ColorSpaceDeviceRGB);
39 } 39 }
40 40
41 RawPtr<FEFlood> FEFlood::create(Filter* filter, const Color& floodColor, float f loodOpacity) 41 FEFlood* FEFlood::create(Filter* filter, const Color& floodColor, float floodOpa city)
42 { 42 {
43 return new FEFlood(filter, floodColor, floodOpacity); 43 return new FEFlood(filter, floodColor, floodOpacity);
44 } 44 }
45 45
46 Color FEFlood::floodColor() const 46 Color FEFlood::floodColor() const
47 { 47 {
48 return m_floodColor; 48 return m_floodColor;
49 } 49 }
50 50
51 bool FEFlood::setFloodColor(const Color& color) 51 bool FEFlood::setFloodColor(const Color& color)
(...skipping 30 matching lines...) Expand all
82 { 82 {
83 writeIndent(ts, indent); 83 writeIndent(ts, indent);
84 ts << "[feFlood"; 84 ts << "[feFlood";
85 FilterEffect::externalRepresentation(ts); 85 FilterEffect::externalRepresentation(ts);
86 ts << " flood-color=\"" << floodColor().nameForLayoutTreeAsText() << "\" " 86 ts << " flood-color=\"" << floodColor().nameForLayoutTreeAsText() << "\" "
87 << "flood-opacity=\"" << floodOpacity() << "\"]\n"; 87 << "flood-opacity=\"" << floodOpacity() << "\"]\n";
88 return ts; 88 return ts;
89 } 89 }
90 90
91 } // namespace blink 91 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698