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

Side by Side Diff: Source/core/html/canvas/CanvasRenderingContext2D.cpp

Issue 14488003: Absolutify paths to platform/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: scripts, iwyu Created 7 years, 8 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 | Annotate | Revision Log
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 Intel Corporation. All rights reserved. 8 * Copyright (C) 2012 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 26 matching lines...) Expand all
37 #include "CSSParser.h" 37 #include "CSSParser.h"
38 #include "CSSPropertyNames.h" 38 #include "CSSPropertyNames.h"
39 #include "CachedImage.h" 39 #include "CachedImage.h"
40 #include "CanvasGradient.h" 40 #include "CanvasGradient.h"
41 #include "CanvasPattern.h" 41 #include "CanvasPattern.h"
42 #include "CanvasStyle.h" 42 #include "CanvasStyle.h"
43 #include "Console.h" 43 #include "Console.h"
44 #include "DOMPath.h" 44 #include "DOMPath.h"
45 #include "ExceptionCode.h" 45 #include "ExceptionCode.h"
46 #include "ExceptionCodePlaceholder.h" 46 #include "ExceptionCodePlaceholder.h"
47 #include "FloatConversion.h"
48 #include "HTMLCanvasElement.h" 47 #include "HTMLCanvasElement.h"
49 #include "HTMLImageElement.h" 48 #include "HTMLImageElement.h"
50 #include "HTMLMediaElement.h" 49 #include "HTMLMediaElement.h"
51 #include "HTMLNames.h" 50 #include "HTMLNames.h"
52 #include "HTMLVideoElement.h" 51 #include "HTMLVideoElement.h"
53 #include "ImageData.h" 52 #include "ImageData.h"
54 #include "KURL.h"
55 #include "Page.h" 53 #include "Page.h"
56 #include "RenderHTMLCanvas.h" 54 #include "RenderHTMLCanvas.h"
57 #include "RenderLayer.h" 55 #include "RenderLayer.h"
58 #include "SecurityOrigin.h" 56 #include "SecurityOrigin.h"
59 #include "Settings.h" 57 #include "Settings.h"
60 #include "StylePropertySet.h" 58 #include "StylePropertySet.h"
61 #include "StyleResolver.h" 59 #include "StyleResolver.h"
62 #include "TextMetrics.h" 60 #include "TextMetrics.h"
61 #include "core/platform/FloatConversion.h"
62 #include "core/platform/KURL.h"
63 #include "core/platform/graphics/FloatQuad.h" 63 #include "core/platform/graphics/FloatQuad.h"
64 #include "core/platform/graphics/FontCache.h" 64 #include "core/platform/graphics/FontCache.h"
65 #include "core/platform/graphics/GraphicsContext.h" 65 #include "core/platform/graphics/GraphicsContext.h"
66 #include "core/platform/graphics/StrokeStyleApplier.h" 66 #include "core/platform/graphics/StrokeStyleApplier.h"
67 #include "core/platform/graphics/TextRun.h" 67 #include "core/platform/graphics/TextRun.h"
68 #include "core/platform/graphics/transforms/AffineTransform.h" 68 #include "core/platform/graphics/transforms/AffineTransform.h"
69 69
70 #include <wtf/CheckedArithmetic.h> 70 #include <wtf/CheckedArithmetic.h>
71 #include <wtf/MathExtras.h> 71 #include <wtf/MathExtras.h>
72 #include <wtf/OwnPtr.h> 72 #include <wtf/OwnPtr.h>
(...skipping 2172 matching lines...) Expand 10 before | Expand all | Expand 10 after
2245 return; 2245 return;
2246 2246
2247 realizeSaves(); 2247 realizeSaves();
2248 modifiableState().m_imageSmoothingEnabled = enabled; 2248 modifiableState().m_imageSmoothingEnabled = enabled;
2249 GraphicsContext* c = drawingContext(); 2249 GraphicsContext* c = drawingContext();
2250 if (c) 2250 if (c)
2251 c->setImageInterpolationQuality(enabled ? DefaultInterpolationQuality : InterpolationNone); 2251 c->setImageInterpolationQuality(enabled ? DefaultInterpolationQuality : InterpolationNone);
2252 } 2252 }
2253 2253
2254 } // namespace WebCore 2254 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/html/canvas/CanvasRenderingContext.cpp ('k') | Source/core/html/canvas/WebGLRenderingContext.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698