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

Side by Side Diff: Source/core/platform/graphics/filters/FETile.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) 2008 Alex Mathews <possessedpenguinbob@gmail.com> 2 * Copyright (C) 2008 Alex Mathews <possessedpenguinbob@gmail.com>
3 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> 3 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org>
4 * Copyright (C) 2013 Google Inc. All rights reserved. 4 * Copyright (C) 2013 Google Inc. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 10 matching lines...) Expand all
21 21
22 #include "config.h" 22 #include "config.h"
23 23
24 #include "core/platform/graphics/filters/FETile.h" 24 #include "core/platform/graphics/filters/FETile.h"
25 25
26 #include "SkFlattenableBuffers.h" 26 #include "SkFlattenableBuffers.h"
27 #include "SkTileImageFilter.h" 27 #include "SkTileImageFilter.h"
28 28
29 #include "core/platform/graphics/GraphicsContext.h" 29 #include "core/platform/graphics/GraphicsContext.h"
30 #include "core/platform/graphics/Pattern.h" 30 #include "core/platform/graphics/Pattern.h"
31 #include "core/platform/graphics/filters/Filter.h"
32 #include "core/platform/graphics/filters/SkiaImageFilterBuilder.h" 31 #include "core/platform/graphics/filters/SkiaImageFilterBuilder.h"
33 #include "platform/text/TextStream.h" 32 #include "platform/text/TextStream.h"
34 #include "platform/transforms/AffineTransform.h" 33 #include "platform/transforms/AffineTransform.h"
35 #include "third_party/skia/include/core/SkDevice.h" 34 #include "third_party/skia/include/core/SkDevice.h"
36 35
37 namespace WebCore { 36 namespace WebCore {
38 37
39 FETile::FETile(Filter* filter) 38 FETile::FETile(Filter* filter)
40 : FilterEffect(filter) 39 : FilterEffect(filter)
41 { 40 {
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 writeIndent(ts, indent); 96 writeIndent(ts, indent);
98 ts << "[feTile"; 97 ts << "[feTile";
99 FilterEffect::externalRepresentation(ts); 98 FilterEffect::externalRepresentation(ts);
100 ts << "]\n"; 99 ts << "]\n";
101 inputEffect(0)->externalRepresentation(ts, indent + 1); 100 inputEffect(0)->externalRepresentation(ts, indent + 1);
102 101
103 return ts; 102 return ts;
104 } 103 }
105 104
106 } // namespace WebCore 105 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/platform/graphics/filters/FEOffset.cpp ('k') | Source/core/platform/graphics/filters/FETurbulence.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698