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

Side by Side Diff: Source/core/svg/graphics/filters/SVGFEImage.cpp

Issue 64643009: Remove duplicated headers from core/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 7 years 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 13 matching lines...) Expand all
24 #include "config.h" 24 #include "config.h"
25 25
26 #include "core/svg/graphics/filters/SVGFEImage.h" 26 #include "core/svg/graphics/filters/SVGFEImage.h"
27 27
28 #include "SkBitmapSource.h" 28 #include "SkBitmapSource.h"
29 #include "core/platform/graphics/GraphicsContext.h" 29 #include "core/platform/graphics/GraphicsContext.h"
30 #include "core/platform/graphics/filters/Filter.h" 30 #include "core/platform/graphics/filters/Filter.h"
31 #include "core/rendering/RenderObject.h" 31 #include "core/rendering/RenderObject.h"
32 #include "core/rendering/svg/SVGRenderingContext.h" 32 #include "core/rendering/svg/SVGRenderingContext.h"
33 #include "core/svg/SVGElement.h" 33 #include "core/svg/SVGElement.h"
34 #include "core/svg/SVGPreserveAspectRatio.h"
35 #include "core/svg/SVGURIReference.h" 34 #include "core/svg/SVGURIReference.h"
36 #include "platform/text/TextStream.h" 35 #include "platform/text/TextStream.h"
37 #include "platform/transforms/AffineTransform.h" 36 #include "platform/transforms/AffineTransform.h"
38 37
39 namespace WebCore { 38 namespace WebCore {
40 39
41 FEImage::FEImage(Filter* filter, PassRefPtr<Image> image, const SVGPreserveAspec tRatio& preserveAspectRatio) 40 FEImage::FEImage(Filter* filter, PassRefPtr<Image> image, const SVGPreserveAspec tRatio& preserveAspectRatio)
42 : FilterEffect(filter) 41 : FilterEffect(filter)
43 , m_image(image) 42 , m_image(image)
44 , m_document(0) 43 , m_document(0)
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 if (!m_image) 159 if (!m_image)
161 return 0; 160 return 0;
162 161
163 if (!m_image->nativeImageForCurrentFrame()) 162 if (!m_image->nativeImageForCurrentFrame())
164 return 0; 163 return 0;
165 164
166 return adoptRef(new SkBitmapSource(m_image->nativeImageForCurrentFrame()->bi tmap())); 165 return adoptRef(new SkBitmapSource(m_image->nativeImageForCurrentFrame()->bi tmap()));
167 } 166 }
168 167
169 } // namespace WebCore 168 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/svg/graphics/SVGImageForContainer.cpp ('k') | Source/core/svg/graphics/filters/SVGFilterBuilder.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698