OLD | NEW |
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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 #include "core/html/HTMLCanvasElement.h" | 51 #include "core/html/HTMLCanvasElement.h" |
52 #include "core/html/HTMLImageElement.h" | 52 #include "core/html/HTMLImageElement.h" |
53 #include "core/html/HTMLMediaElement.h" | 53 #include "core/html/HTMLMediaElement.h" |
54 #include "core/html/HTMLVideoElement.h" | 54 #include "core/html/HTMLVideoElement.h" |
55 #include "core/html/ImageData.h" | 55 #include "core/html/ImageData.h" |
56 #include "core/html/TextMetrics.h" | 56 #include "core/html/TextMetrics.h" |
57 #include "core/html/canvas/CanvasGradient.h" | 57 #include "core/html/canvas/CanvasGradient.h" |
58 #include "core/html/canvas/CanvasPattern.h" | 58 #include "core/html/canvas/CanvasPattern.h" |
59 #include "core/html/canvas/CanvasStyle.h" | 59 #include "core/html/canvas/CanvasStyle.h" |
60 #include "core/html/canvas/Path2D.h" | 60 #include "core/html/canvas/Path2D.h" |
| 61 #include "core/layout/Layer.h" |
61 #include "core/layout/LayoutTheme.h" | 62 #include "core/layout/LayoutTheme.h" |
62 #include "core/rendering/RenderImage.h" | 63 #include "core/rendering/RenderImage.h" |
63 #include "core/rendering/RenderLayer.h" | |
64 #include "platform/fonts/FontCache.h" | 64 #include "platform/fonts/FontCache.h" |
65 #include "platform/geometry/FloatQuad.h" | 65 #include "platform/geometry/FloatQuad.h" |
66 #include "platform/graphics/DrawLooperBuilder.h" | 66 #include "platform/graphics/DrawLooperBuilder.h" |
67 #include "platform/graphics/GraphicsContextStateSaver.h" | 67 #include "platform/graphics/GraphicsContextStateSaver.h" |
68 #include "platform/text/BidiTextRun.h" | 68 #include "platform/text/BidiTextRun.h" |
69 #include "platform/text/TextRun.h" | 69 #include "platform/text/TextRun.h" |
70 #include "wtf/ArrayBufferContents.h" | 70 #include "wtf/ArrayBufferContents.h" |
71 #include "wtf/CheckedArithmetic.h" | 71 #include "wtf/CheckedArithmetic.h" |
72 #include "wtf/MathExtras.h" | 72 #include "wtf/MathExtras.h" |
73 #include "wtf/OwnPtr.h" | 73 #include "wtf/OwnPtr.h" |
(...skipping 2288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2362 | 2362 |
2363 unsigned CanvasRenderingContext2D::hitRegionsCount() const | 2363 unsigned CanvasRenderingContext2D::hitRegionsCount() const |
2364 { | 2364 { |
2365 if (m_hitRegionManager) | 2365 if (m_hitRegionManager) |
2366 return m_hitRegionManager->getHitRegionsCount(); | 2366 return m_hitRegionManager->getHitRegionsCount(); |
2367 | 2367 |
2368 return 0; | 2368 return 0; |
2369 } | 2369 } |
2370 | 2370 |
2371 } // namespace blink | 2371 } // namespace blink |
OLD | NEW |