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

Side by Side Diff: Source/core/platform/graphics/Path.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) 2003, 2006 Apple Computer, Inc. All rights reserved. 2 * Copyright (C) 2003, 2006 Apple Computer, Inc. All rights reserved.
3 * 2006 Rob Buis <buis@kde.org> 3 * 2006 Rob Buis <buis@kde.org>
4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> 4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org>
5 * Copyright (C) 2013 Google Inc. All rights reserved. 5 * Copyright (C) 2013 Google Inc. All rights reserved.
6 * Copyright (C) 2013 Intel Corporation. All rights reserved. 6 * Copyright (C) 2013 Intel Corporation. All rights reserved.
7 * 7 *
8 * Redistribution and use in source and binary forms, with or without 8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions 9 * modification, are permitted provided that the following conditions
10 * are met: 10 * are met:
(...skipping 18 matching lines...) Expand all
29 29
30 #include "config.h" 30 #include "config.h"
31 #include "core/platform/graphics/Path.h" 31 #include "core/platform/graphics/Path.h"
32 32
33 #include <math.h> 33 #include <math.h>
34 #include "core/platform/graphics/GraphicsContext.h" 34 #include "core/platform/graphics/GraphicsContext.h"
35 #include "core/platform/graphics/skia/SkiaUtils.h" 35 #include "core/platform/graphics/skia/SkiaUtils.h"
36 #include "platform/geometry/FloatPoint.h" 36 #include "platform/geometry/FloatPoint.h"
37 #include "platform/geometry/FloatRect.h" 37 #include "platform/geometry/FloatRect.h"
38 #include "platform/transforms/AffineTransform.h" 38 #include "platform/transforms/AffineTransform.h"
39 #include "third_party/skia/include/core/SkPath.h"
40 #include "third_party/skia/include/core/SkPathMeasure.h" 39 #include "third_party/skia/include/core/SkPathMeasure.h"
41 #include "third_party/skia/include/pathops/SkPathOps.h" 40 #include "third_party/skia/include/pathops/SkPathOps.h"
42 #include "wtf/MathExtras.h" 41 #include "wtf/MathExtras.h"
43 42
44 namespace WebCore { 43 namespace WebCore {
45 44
46 Path::Path() 45 Path::Path()
47 : m_path() 46 : m_path()
48 { 47 {
49 } 48 }
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after
443 { 442 {
444 m_path.offset(WebCoreFloatToSkScalar(size.width()), WebCoreFloatToSkScalar(s ize.height())); 443 m_path.offset(WebCoreFloatToSkScalar(size.width()), WebCoreFloatToSkScalar(s ize.height()));
445 } 444 }
446 445
447 bool Path::unionPath(const Path& other) 446 bool Path::unionPath(const Path& other)
448 { 447 {
449 return Op(m_path, other.m_path, kUnion_PathOp, &m_path); 448 return Op(m_path, other.m_path, kUnion_PathOp, &m_path);
450 } 449 }
451 450
452 } 451 }
OLDNEW
« no previous file with comments | « Source/core/platform/graphics/ImageSource.cpp ('k') | Source/core/platform/graphics/Pattern.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698