| 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 16 matching lines...) Expand all Loading... |
| 27 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | 27 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
| 28 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 28 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 31 */ | 31 */ |
| 32 | 32 |
| 33 #include "sky/engine/config.h" | 33 #include "sky/engine/config.h" |
| 34 #include "sky/engine/core/html/canvas/CanvasRenderingContext2D.h" | 34 #include "sky/engine/core/html/canvas/CanvasRenderingContext2D.h" |
| 35 | 35 |
| 36 #include "gen/sky/core/CSSPropertyNames.h" | 36 #include "gen/sky/core/CSSPropertyNames.h" |
| 37 #include "sky/engine/bindings2/exception_messages.h" | 37 #include "sky/engine/bindings/exception_messages.h" |
| 38 #include "sky/engine/bindings2/exception_state.h" | 38 #include "sky/engine/bindings/exception_state.h" |
| 39 #include "sky/engine/bindings2/exception_state_placeholder.h" | 39 #include "sky/engine/bindings/exception_state_placeholder.h" |
| 40 #include "sky/engine/core/css/CSSFontSelector.h" | 40 #include "sky/engine/core/css/CSSFontSelector.h" |
| 41 #include "sky/engine/core/css/StylePropertySet.h" | 41 #include "sky/engine/core/css/StylePropertySet.h" |
| 42 #include "sky/engine/core/css/parser/BisonCSSParser.h" | 42 #include "sky/engine/core/css/parser/BisonCSSParser.h" |
| 43 #include "sky/engine/core/css/resolver/StyleResolver.h" | 43 #include "sky/engine/core/css/resolver/StyleResolver.h" |
| 44 #include "sky/engine/core/dom/ExceptionCode.h" | 44 #include "sky/engine/core/dom/ExceptionCode.h" |
| 45 #include "sky/engine/core/dom/StyleEngine.h" | 45 #include "sky/engine/core/dom/StyleEngine.h" |
| 46 #include "sky/engine/core/events/Event.h" | 46 #include "sky/engine/core/events/Event.h" |
| 47 #include "sky/engine/core/fetch/ImageResource.h" | 47 #include "sky/engine/core/fetch/ImageResource.h" |
| 48 #include "sky/engine/core/frame/ImageBitmap.h" | 48 #include "sky/engine/core/frame/ImageBitmap.h" |
| 49 #include "sky/engine/core/html/HTMLCanvasElement.h" | 49 #include "sky/engine/core/html/HTMLCanvasElement.h" |
| (...skipping 2151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2201 | 2201 |
| 2202 unsigned CanvasRenderingContext2D::hitRegionsCount() const | 2202 unsigned CanvasRenderingContext2D::hitRegionsCount() const |
| 2203 { | 2203 { |
| 2204 if (m_hitRegionManager) | 2204 if (m_hitRegionManager) |
| 2205 return m_hitRegionManager->getHitRegionsCount(); | 2205 return m_hitRegionManager->getHitRegionsCount(); |
| 2206 | 2206 |
| 2207 return 0; | 2207 return 0; |
| 2208 } | 2208 } |
| 2209 | 2209 |
| 2210 } // namespace blink | 2210 } // namespace blink |
| OLD | NEW |