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

Side by Side Diff: Source/core/platform/graphics/Path.h

Issue 32823017: Move FloatPolygon.* and WindRule.h to Source/platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Export classes/enum for win/mac Created 7 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) 2003, 2006, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2003, 2006, 2009 Apple Inc. All rights reserved.
3 * 2006 Rob Buis <buis@kde.org> 3 * 2006 Rob Buis <buis@kde.org>
4 * Copyright (C) 2007-2008 Torch Mobile, Inc. 4 * Copyright (C) 2007-2008 Torch Mobile, Inc.
5 * Copyright (C) 2013 Google Inc. All rights reserved. 5 * Copyright (C) 2013 Google Inc. All rights reserved.
6 * 6 *
7 * Redistribution and use in source and binary forms, with or without 7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions 8 * modification, are permitted provided that the following conditions
9 * are met: 9 * are met:
10 * 1. Redistributions of source code must retain the above copyright 10 * 1. Redistributions of source code must retain the above copyright
(...skipping 11 matching lines...) Expand all
22 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 22 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
23 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 23 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
24 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */ 27 */
28 28
29 #ifndef Path_h 29 #ifndef Path_h
30 #define Path_h 30 #define Path_h
31 31
32 #include "core/platform/graphics/WindRule.h"
33 #include "platform/geometry/RoundedRect.h" 32 #include "platform/geometry/RoundedRect.h"
33 #include "platform/graphics/WindRule.h"
34 #include "third_party/skia/include/core/SkPath.h" 34 #include "third_party/skia/include/core/SkPath.h"
35 #include "wtf/FastAllocBase.h" 35 #include "wtf/FastAllocBase.h"
36 #include "wtf/Forward.h" 36 #include "wtf/Forward.h"
37 37
38 class SkPath; 38 class SkPath;
39 39
40 namespace WebCore { 40 namespace WebCore {
41 41
42 class AffineTransform; 42 class AffineTransform;
43 class FloatPoint; 43 class FloatPoint;
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 125
126 private: 126 private:
127 void addEllipse(const FloatPoint&, float radiusX, float radiusY, float start Angle, float endAngle, bool anticlockwise); 127 void addEllipse(const FloatPoint&, float radiusX, float radiusY, float start Angle, float endAngle, bool anticlockwise);
128 128
129 SkPath m_path; 129 SkPath m_path;
130 }; 130 };
131 131
132 } 132 }
133 133
134 #endif 134 #endif
OLDNEW
« no previous file with comments | « Source/core/platform/graphics/FloatPolygon.cpp ('k') | Source/core/platform/graphics/WindRule.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698