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

Side by Side Diff: Source/core/rendering/CompositedLayerMapping.cpp

Issue 99103006: Moving GraphicsContext and dependencies from core to platform. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Final patch - fixes Android Created 7 years 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/rendering/CompositedLayerMapping.h ('k') | Source/core/rendering/EllipsisBox.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) 2009, 2010, 2011 Apple Inc. All rights reserved. 2 * Copyright (C) 2009, 2010, 2011 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 23 matching lines...) Expand all
34 #include "core/fetch/ImageResource.h" 34 #include "core/fetch/ImageResource.h"
35 #include "core/html/HTMLIFrameElement.h" 35 #include "core/html/HTMLIFrameElement.h"
36 #include "core/html/HTMLMediaElement.h" 36 #include "core/html/HTMLMediaElement.h"
37 #include "core/html/canvas/CanvasRenderingContext.h" 37 #include "core/html/canvas/CanvasRenderingContext.h"
38 #include "core/inspector/InspectorInstrumentation.h" 38 #include "core/inspector/InspectorInstrumentation.h"
39 #include "core/page/Chrome.h" 39 #include "core/page/Chrome.h"
40 #include "core/frame/FrameView.h" 40 #include "core/frame/FrameView.h"
41 #include "core/page/Settings.h" 41 #include "core/page/Settings.h"
42 #include "core/frame/animation/AnimationController.h" 42 #include "core/frame/animation/AnimationController.h"
43 #include "core/page/scrolling/ScrollingCoordinator.h" 43 #include "core/page/scrolling/ScrollingCoordinator.h"
44 #include "core/platform/graphics/FontCache.h"
45 #include "core/platform/graphics/GraphicsContext.h"
46 #include "core/platform/graphics/GraphicsContext3D.h"
47 #include "core/platform/graphics/filters/custom/CustomFilterOperation.h" 44 #include "core/platform/graphics/filters/custom/CustomFilterOperation.h"
48 #include "core/plugins/PluginView.h" 45 #include "core/plugins/PluginView.h"
49 #include "core/rendering/FilterEffectRenderer.h" 46 #include "core/rendering/FilterEffectRenderer.h"
50 #include "core/rendering/RenderApplet.h" 47 #include "core/rendering/RenderApplet.h"
51 #include "core/rendering/RenderEmbeddedObject.h" 48 #include "core/rendering/RenderEmbeddedObject.h"
52 #include "core/rendering/RenderIFrame.h" 49 #include "core/rendering/RenderIFrame.h"
53 #include "core/rendering/RenderImage.h" 50 #include "core/rendering/RenderImage.h"
54 #include "core/rendering/RenderLayerCompositor.h" 51 #include "core/rendering/RenderLayerCompositor.h"
55 #include "core/rendering/RenderLayerStackingNodeIterator.h" 52 #include "core/rendering/RenderLayerStackingNodeIterator.h"
56 #include "core/rendering/RenderVideo.h" 53 #include "core/rendering/RenderVideo.h"
57 #include "core/rendering/RenderView.h" 54 #include "core/rendering/RenderView.h"
58 #include "core/rendering/animation/WebAnimationProvider.h" 55 #include "core/rendering/animation/WebAnimationProvider.h"
59 #include "core/rendering/style/KeyframeList.h" 56 #include "core/rendering/style/KeyframeList.h"
60 #include "platform/LengthFunctions.h" 57 #include "platform/LengthFunctions.h"
58 #include "platform/fonts/FontCache.h"
59 #include "platform/graphics/GraphicsContext.h"
60 #include "platform/graphics/GraphicsContext3D.h"
61 #include "wtf/CurrentTime.h" 61 #include "wtf/CurrentTime.h"
62 #include "wtf/text/StringBuilder.h" 62 #include "wtf/text/StringBuilder.h"
63 63
64 using namespace std; 64 using namespace std;
65 65
66 namespace WebCore { 66 namespace WebCore {
67 67
68 using namespace HTMLNames; 68 using namespace HTMLNames;
69 69
70 static IntRect clipBox(RenderBox* renderer); 70 static IntRect clipBox(RenderBox* renderer);
(...skipping 1977 matching lines...) Expand 10 before | Expand all | Expand 10 after
2048 } else if (graphicsLayer == m_scrollingContentsLayer.get()) { 2048 } else if (graphicsLayer == m_scrollingContentsLayer.get()) {
2049 name = "Scrolling Contents Layer"; 2049 name = "Scrolling Contents Layer";
2050 } else { 2050 } else {
2051 ASSERT_NOT_REACHED(); 2051 ASSERT_NOT_REACHED();
2052 } 2052 }
2053 2053
2054 return name; 2054 return name;
2055 } 2055 }
2056 2056
2057 } // namespace WebCore 2057 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/rendering/CompositedLayerMapping.h ('k') | Source/core/rendering/EllipsisBox.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698