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

Side by Side Diff: third_party/WebKit/Source/core/svg/graphics/filters/SVGFEImage.h

Issue 2390773004: reflow comments in core/svg/ (Closed)
Patch Set: comments (heh!) Created 4 years, 2 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) 2010 Dirk Schulze <krit@webkit.org> 5 * Copyright (C) 2010 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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 return FilterEffectTypeImage; 61 return FilterEffectTypeImage;
62 } 62 }
63 63
64 FloatRect mapInputs(const FloatRect&) const override; 64 FloatRect mapInputs(const FloatRect&) const override;
65 65
66 sk_sp<SkImageFilter> createImageFilter() override; 66 sk_sp<SkImageFilter> createImageFilter() override;
67 sk_sp<SkImageFilter> createImageFilterForLayoutObject(const LayoutObject&); 67 sk_sp<SkImageFilter> createImageFilterForLayoutObject(const LayoutObject&);
68 68
69 RefPtr<Image> m_image; 69 RefPtr<Image> m_image;
70 70
71 // m_treeScope will never be a dangling reference. See https://bugs.webkit.org /show_bug.cgi?id=99243 71 // m_treeScope will never be a dangling reference. See
72 // https://bugs.webkit.org/show_bug.cgi?id=99243
72 Member<TreeScope> m_treeScope; 73 Member<TreeScope> m_treeScope;
73 String m_href; 74 String m_href;
74 Member<SVGPreserveAspectRatio> m_preserveAspectRatio; 75 Member<SVGPreserveAspectRatio> m_preserveAspectRatio;
75 }; 76 };
76 77
77 } // namespace blink 78 } // namespace blink
78 79
79 #endif // SVGFEImage_h 80 #endif // SVGFEImage_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698