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

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

Issue 14190004: Absolutify paths to loader/*. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: hmm Created 7 years, 8 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
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 11 matching lines...) Expand all
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #include "config.h" 26 #include "config.h"
27 27
28 #include "core/rendering/RenderLayerBacking.h" 28 #include "core/rendering/RenderLayerBacking.h"
29 29
30 #include "AnimationController.h" 30 #include "AnimationController.h"
31 #include "CSSPropertyNames.h" 31 #include "CSSPropertyNames.h"
32 #include "CachedImage.h"
33 #include "CanvasRenderingContext.h" 32 #include "CanvasRenderingContext.h"
34 #include "Chrome.h" 33 #include "Chrome.h"
35 #include "FrameView.h" 34 #include "FrameView.h"
36 #include "HTMLCanvasElement.h" 35 #include "HTMLCanvasElement.h"
37 #include "HTMLIFrameElement.h" 36 #include "HTMLIFrameElement.h"
38 #include "HTMLMediaElement.h" 37 #include "HTMLMediaElement.h"
39 #include "HTMLNames.h" 38 #include "HTMLNames.h"
40 #include "InspectorInstrumentation.h" 39 #include "InspectorInstrumentation.h"
41 #include "PluginViewBase.h" 40 #include "PluginViewBase.h"
42 #include "ScrollingCoordinator.h" 41 #include "ScrollingCoordinator.h"
43 #include "Settings.h" 42 #include "Settings.h"
44 #include "StyleResolver.h" 43 #include "StyleResolver.h"
45 #include "WebCoreMemoryInstrumentation.h" 44 #include "WebCoreMemoryInstrumentation.h"
45 #include "core/loader/cache/CachedImage.h"
46 #include "core/platform/graphics/FontCache.h" 46 #include "core/platform/graphics/FontCache.h"
47 #include "core/platform/graphics/GraphicsContext.h" 47 #include "core/platform/graphics/GraphicsContext.h"
48 #include "core/platform/graphics/GraphicsLayer.h" 48 #include "core/platform/graphics/GraphicsLayer.h"
49 #include "core/rendering/RenderApplet.h" 49 #include "core/rendering/RenderApplet.h"
50 #include "core/rendering/RenderEmbeddedObject.h" 50 #include "core/rendering/RenderEmbeddedObject.h"
51 #include "core/rendering/RenderIFrame.h" 51 #include "core/rendering/RenderIFrame.h"
52 #include "core/rendering/RenderImage.h" 52 #include "core/rendering/RenderImage.h"
53 #include "core/rendering/RenderLayerCompositor.h" 53 #include "core/rendering/RenderLayerCompositor.h"
54 #include "core/rendering/RenderVideo.h" 54 #include "core/rendering/RenderVideo.h"
55 #include "core/rendering/RenderView.h" 55 #include "core/rendering/RenderView.h"
(...skipping 1925 matching lines...) Expand 10 before | Expand all | Expand 10 after
1981 info.addMember(m_childContainmentLayer, "childContainmentLayer"); 1981 info.addMember(m_childContainmentLayer, "childContainmentLayer");
1982 info.addMember(m_maskLayer, "maskLayer"); 1982 info.addMember(m_maskLayer, "maskLayer");
1983 info.addMember(m_layerForHorizontalScrollbar, "layerForHorizontalScrollbar") ; 1983 info.addMember(m_layerForHorizontalScrollbar, "layerForHorizontalScrollbar") ;
1984 info.addMember(m_layerForVerticalScrollbar, "layerForVerticalScrollbar"); 1984 info.addMember(m_layerForVerticalScrollbar, "layerForVerticalScrollbar");
1985 info.addMember(m_layerForScrollCorner, "layerForScrollCorner"); 1985 info.addMember(m_layerForScrollCorner, "layerForScrollCorner");
1986 info.addMember(m_scrollingLayer, "scrollingLayer"); 1986 info.addMember(m_scrollingLayer, "scrollingLayer");
1987 info.addMember(m_scrollingContentsLayer, "scrollingContentsLayer"); 1987 info.addMember(m_scrollingContentsLayer, "scrollingContentsLayer");
1988 } 1988 }
1989 1989
1990 } // namespace WebCore 1990 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderImageResourceStyleImage.cpp ('k') | Source/core/rendering/RenderLayerFilterInfo.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698