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

Side by Side Diff: sky/engine/core/html/canvas/CanvasRenderingContext2D.cpp

Issue 689373003: Remove most of the media stack. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « sky/engine/core/html/MediaKeyEvent.idl ('k') | sky/engine/core/rendering/HitTestResult.h » ('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 30 matching lines...) Expand all
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/dom/StyleEngine.h" 45 #include "core/dom/StyleEngine.h"
46 #include "core/events/Event.h" 46 #include "core/events/Event.h"
47 #include "core/fetch/ImageResource.h" 47 #include "core/fetch/ImageResource.h"
48 #include "core/frame/ImageBitmap.h" 48 #include "core/frame/ImageBitmap.h"
49 #include "core/html/HTMLCanvasElement.h" 49 #include "core/html/HTMLCanvasElement.h"
50 #include "core/html/HTMLImageElement.h" 50 #include "core/html/HTMLImageElement.h"
51 #include "core/html/HTMLMediaElement.h"
52 #include "core/html/ImageData.h" 51 #include "core/html/ImageData.h"
53 #include "core/html/TextMetrics.h" 52 #include "core/html/TextMetrics.h"
54 #include "core/html/canvas/CanvasGradient.h" 53 #include "core/html/canvas/CanvasGradient.h"
55 #include "core/html/canvas/CanvasPattern.h" 54 #include "core/html/canvas/CanvasPattern.h"
56 #include "core/html/canvas/CanvasStyle.h" 55 #include "core/html/canvas/CanvasStyle.h"
57 #include "core/html/canvas/Path2D.h" 56 #include "core/html/canvas/Path2D.h"
58 #include "core/rendering/RenderImage.h" 57 #include "core/rendering/RenderImage.h"
59 #include "core/rendering/RenderLayer.h" 58 #include "core/rendering/RenderLayer.h"
60 #include "core/rendering/RenderTheme.h" 59 #include "core/rendering/RenderTheme.h"
61 #include "platform/fonts/FontCache.h" 60 #include "platform/fonts/FontCache.h"
(...skipping 2401 matching lines...) Expand 10 before | Expand all | Expand 10 after
2463 2462
2464 unsigned CanvasRenderingContext2D::hitRegionsCount() const 2463 unsigned CanvasRenderingContext2D::hitRegionsCount() const
2465 { 2464 {
2466 if (m_hitRegionManager) 2465 if (m_hitRegionManager)
2467 return m_hitRegionManager->getHitRegionsCount(); 2466 return m_hitRegionManager->getHitRegionsCount();
2468 2467
2469 return 0; 2468 return 0;
2470 } 2469 }
2471 2470
2472 } // namespace blink 2471 } // namespace blink
OLDNEW
« no previous file with comments | « sky/engine/core/html/MediaKeyEvent.idl ('k') | sky/engine/core/rendering/HitTestResult.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698