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

Side by Side Diff: Source/core/html/canvas/CanvasRenderingContext2D.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, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved. 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple Inc. All rights reserved.
3 * Copyright (C) 2008, 2010 Nokia Corporation and/or its subsidiary(-ies) 3 * Copyright (C) 2008, 2010 Nokia Corporation and/or its subsidiary(-ies)
4 * Copyright (C) 2007 Alp Toker <alp@atoker.com> 4 * Copyright (C) 2007 Alp Toker <alp@atoker.com>
5 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> 5 * Copyright (C) 2008 Eric Seidel <eric@webkit.org>
6 * Copyright (C) 2008 Dirk Schulze <krit@webkit.org> 6 * Copyright (C) 2008 Dirk Schulze <krit@webkit.org>
7 * Copyright (C) 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserved. 7 * Copyright (C) 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserved.
8 * Copyright (C) 2012, 2013 Intel Corporation. All rights reserved. 8 * Copyright (C) 2012, 2013 Intel Corporation. All rights reserved.
9 * Copyright (C) 2013 Adobe Systems Incorporated. All rights reserved. 9 * Copyright (C) 2013 Adobe Systems Incorporated. All rights reserved.
10 * 10 *
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 #include "core/css/StylePropertySet.h" 43 #include "core/css/StylePropertySet.h"
44 #include "core/css/resolver/StyleResolver.h" 44 #include "core/css/resolver/StyleResolver.h"
45 #include "core/dom/ExceptionCode.h" 45 #include "core/dom/ExceptionCode.h"
46 #include "core/fetch/ImageResource.h" 46 #include "core/fetch/ImageResource.h"
47 #include "core/html/HTMLCanvasElement.h" 47 #include "core/html/HTMLCanvasElement.h"
48 #include "core/html/HTMLImageElement.h" 48 #include "core/html/HTMLImageElement.h"
49 #include "core/html/HTMLMediaElement.h" 49 #include "core/html/HTMLMediaElement.h"
50 #include "core/html/HTMLVideoElement.h" 50 #include "core/html/HTMLVideoElement.h"
51 #include "core/html/ImageData.h" 51 #include "core/html/ImageData.h"
52 #include "core/html/TextMetrics.h" 52 #include "core/html/TextMetrics.h"
53 #include "core/html/canvas/Canvas2DContextAttributes.h"
54 #include "core/html/canvas/CanvasGradient.h" 53 #include "core/html/canvas/CanvasGradient.h"
55 #include "core/html/canvas/CanvasPattern.h" 54 #include "core/html/canvas/CanvasPattern.h"
56 #include "core/html/canvas/CanvasStyle.h" 55 #include "core/html/canvas/CanvasStyle.h"
57 #include "core/html/canvas/DOMPath.h" 56 #include "core/html/canvas/DOMPath.h"
58 #include "core/frame/ImageBitmap.h" 57 #include "core/frame/ImageBitmap.h"
59 #include "core/platform/graphics/FontCache.h" 58 #include "core/platform/graphics/FontCache.h"
60 #include "core/platform/graphics/GraphicsContextStateSaver.h" 59 #include "core/platform/graphics/GraphicsContextStateSaver.h"
61 #include "core/rendering/RenderImage.h" 60 #include "core/rendering/RenderImage.h"
62 #include "core/rendering/RenderLayer.h" 61 #include "core/rendering/RenderLayer.h"
63 #include "core/rendering/RenderTheme.h" 62 #include "core/rendering/RenderTheme.h"
64 #include "platform/geometry/FloatQuad.h" 63 #include "platform/geometry/FloatQuad.h"
65 #include "platform/graphics/DrawLooper.h" 64 #include "platform/graphics/DrawLooper.h"
66 #include "platform/graphics/TextRun.h" 65 #include "platform/graphics/TextRun.h"
67 #include "platform/transforms/AffineTransform.h"
68 #include "platform/weborigin/SecurityOrigin.h" 66 #include "platform/weborigin/SecurityOrigin.h"
69 #include "wtf/CheckedArithmetic.h" 67 #include "wtf/CheckedArithmetic.h"
70 #include "wtf/MathExtras.h" 68 #include "wtf/MathExtras.h"
71 #include "wtf/OwnPtr.h" 69 #include "wtf/OwnPtr.h"
72 #include "wtf/Uint8ClampedArray.h" 70 #include "wtf/Uint8ClampedArray.h"
73 #include "wtf/text/StringBuilder.h" 71 #include "wtf/text/StringBuilder.h"
74 72
75 using namespace std; 73 using namespace std;
76 74
77 namespace WebCore { 75 namespace WebCore {
(...skipping 2351 matching lines...) Expand 10 before | Expand all | Expand 10 after
2429 const int focusRingWidth = 5; 2427 const int focusRingWidth = 5;
2430 const int focusRingOutline = 0; 2428 const int focusRingOutline = 0;
2431 c->drawFocusRing(path, focusRingWidth, focusRingOutline, focusRingColor); 2429 c->drawFocusRing(path, focusRingWidth, focusRingOutline, focusRingColor);
2432 2430
2433 c->restore(); 2431 c->restore();
2434 2432
2435 didDraw(dirtyRect); 2433 didDraw(dirtyRect);
2436 } 2434 }
2437 2435
2438 } // namespace WebCore 2436 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/html/canvas/CanvasRenderingContext.cpp ('k') | Source/core/html/canvas/CanvasStyle.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698