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

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

Issue 14519003: Absolutify paths to dom/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix testrunner 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
« no previous file with comments | « Source/core/html/canvas/CanvasPattern.cpp ('k') | Source/core/html/canvas/DataView.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 20 matching lines...) Expand all
31 */ 31 */
32 32
33 #include "config.h" 33 #include "config.h"
34 #include "CanvasRenderingContext2D.h" 34 #include "CanvasRenderingContext2D.h"
35 35
36 #include "CSSPropertyNames.h" 36 #include "CSSPropertyNames.h"
37 #include "CanvasGradient.h" 37 #include "CanvasGradient.h"
38 #include "CanvasPattern.h" 38 #include "CanvasPattern.h"
39 #include "CanvasStyle.h" 39 #include "CanvasStyle.h"
40 #include "DOMPath.h" 40 #include "DOMPath.h"
41 #include "ExceptionCode.h"
42 #include "ExceptionCodePlaceholder.h"
43 #include "HTMLCanvasElement.h" 41 #include "HTMLCanvasElement.h"
44 #include "HTMLImageElement.h" 42 #include "HTMLImageElement.h"
45 #include "HTMLMediaElement.h" 43 #include "HTMLMediaElement.h"
46 #include "HTMLNames.h" 44 #include "HTMLNames.h"
47 #include "HTMLVideoElement.h" 45 #include "HTMLVideoElement.h"
48 #include "ImageData.h" 46 #include "ImageData.h"
49 #include "TextMetrics.h" 47 #include "TextMetrics.h"
50 #include "core/css/CSSFontSelector.h" 48 #include "core/css/CSSFontSelector.h"
51 #include "core/css/CSSParser.h" 49 #include "core/css/CSSParser.h"
52 #include "core/css/StylePropertySet.h" 50 #include "core/css/StylePropertySet.h"
53 #include "core/css/StyleResolver.h" 51 #include "core/css/StyleResolver.h"
52 #include "core/dom/ExceptionCode.h"
53 #include "core/dom/ExceptionCodePlaceholder.h"
54 #include "core/loader/cache/CachedImage.h" 54 #include "core/loader/cache/CachedImage.h"
55 #include "core/page/Console.h" 55 #include "core/page/Console.h"
56 #include "core/page/Page.h" 56 #include "core/page/Page.h"
57 #include "core/page/SecurityOrigin.h" 57 #include "core/page/SecurityOrigin.h"
58 #include "core/page/Settings.h" 58 #include "core/page/Settings.h"
59 #include "core/platform/FloatConversion.h" 59 #include "core/platform/FloatConversion.h"
60 #include "core/platform/KURL.h" 60 #include "core/platform/KURL.h"
61 #include "core/platform/graphics/FloatQuad.h" 61 #include "core/platform/graphics/FloatQuad.h"
62 #include "core/platform/graphics/FontCache.h" 62 #include "core/platform/graphics/FontCache.h"
63 #include "core/platform/graphics/GraphicsContext.h" 63 #include "core/platform/graphics/GraphicsContext.h"
(...skipping 2180 matching lines...) Expand 10 before | Expand all | Expand 10 after
2244 return; 2244 return;
2245 2245
2246 realizeSaves(); 2246 realizeSaves();
2247 modifiableState().m_imageSmoothingEnabled = enabled; 2247 modifiableState().m_imageSmoothingEnabled = enabled;
2248 GraphicsContext* c = drawingContext(); 2248 GraphicsContext* c = drawingContext();
2249 if (c) 2249 if (c)
2250 c->setImageInterpolationQuality(enabled ? DefaultInterpolationQuality : InterpolationNone); 2250 c->setImageInterpolationQuality(enabled ? DefaultInterpolationQuality : InterpolationNone);
2251 } 2251 }
2252 2252
2253 } // namespace WebCore 2253 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/html/canvas/CanvasPattern.cpp ('k') | Source/core/html/canvas/DataView.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698