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

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

Issue 341193009: Include Event.h in fewer header files (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase + NullExecutionContext fix Created 6 years, 6 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/HTMLSelectElement.h ('k') | Source/core/html/ime/InputMethodContext.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, 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 24 matching lines...) Expand all
35 35
36 #include "bindings/v8/ExceptionMessages.h" 36 #include "bindings/v8/ExceptionMessages.h"
37 #include "bindings/v8/ExceptionState.h" 37 #include "bindings/v8/ExceptionState.h"
38 #include "bindings/v8/ExceptionStatePlaceholder.h" 38 #include "bindings/v8/ExceptionStatePlaceholder.h"
39 #include "core/CSSPropertyNames.h" 39 #include "core/CSSPropertyNames.h"
40 #include "core/css/CSSFontSelector.h" 40 #include "core/css/CSSFontSelector.h"
41 #include "core/css/parser/BisonCSSParser.h" 41 #include "core/css/parser/BisonCSSParser.h"
42 #include "core/css/StylePropertySet.h" 42 #include "core/css/StylePropertySet.h"
43 #include "core/css/resolver/StyleResolver.h" 43 #include "core/css/resolver/StyleResolver.h"
44 #include "core/dom/ExceptionCode.h" 44 #include "core/dom/ExceptionCode.h"
45 #include "core/events/Event.h"
45 #include "core/fetch/ImageResource.h" 46 #include "core/fetch/ImageResource.h"
46 #include "core/frame/ImageBitmap.h" 47 #include "core/frame/ImageBitmap.h"
47 #include "core/html/HTMLCanvasElement.h" 48 #include "core/html/HTMLCanvasElement.h"
48 #include "core/html/HTMLImageElement.h" 49 #include "core/html/HTMLImageElement.h"
49 #include "core/html/HTMLMediaElement.h" 50 #include "core/html/HTMLMediaElement.h"
50 #include "core/html/HTMLVideoElement.h" 51 #include "core/html/HTMLVideoElement.h"
51 #include "core/html/ImageData.h" 52 #include "core/html/ImageData.h"
52 #include "core/html/TextMetrics.h" 53 #include "core/html/TextMetrics.h"
53 #include "core/html/canvas/CanvasGradient.h" 54 #include "core/html/canvas/CanvasGradient.h"
54 #include "core/html/canvas/CanvasPattern.h" 55 #include "core/html/canvas/CanvasPattern.h"
(...skipping 2379 matching lines...) Expand 10 before | Expand all | Expand 10 after
2434 2435
2435 unsigned CanvasRenderingContext2D::hitRegionsCount() const 2436 unsigned CanvasRenderingContext2D::hitRegionsCount() const
2436 { 2437 {
2437 if (m_hitRegionManager) 2438 if (m_hitRegionManager)
2438 return m_hitRegionManager->getHitRegionsCount(); 2439 return m_hitRegionManager->getHitRegionsCount();
2439 2440
2440 return 0; 2441 return 0;
2441 } 2442 }
2442 2443
2443 } // namespace WebCore 2444 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/html/HTMLSelectElement.h ('k') | Source/core/html/ime/InputMethodContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698