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

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

Issue 14488003: Absolutify paths to platform/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: scripts, iwyu 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
« no previous file with comments | « Source/core/rendering/RenderLayer.cpp ('k') | Source/core/rendering/RenderListBox.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) 2009, 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2009, 2010 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 19 matching lines...) Expand all
30 #include "AnimationController.h" 30 #include "AnimationController.h"
31 #include "CSSPropertyNames.h" 31 #include "CSSPropertyNames.h"
32 #include "CanvasRenderingContext.h" 32 #include "CanvasRenderingContext.h"
33 #include "Chrome.h" 33 #include "Chrome.h"
34 #include "ChromeClient.h" 34 #include "ChromeClient.h"
35 #include "Frame.h" 35 #include "Frame.h"
36 #include "FrameView.h" 36 #include "FrameView.h"
37 #include "HTMLCanvasElement.h" 37 #include "HTMLCanvasElement.h"
38 #include "HTMLIFrameElement.h" 38 #include "HTMLIFrameElement.h"
39 #include "HTMLNames.h" 39 #include "HTMLNames.h"
40 #include "HistogramSupport.h"
41 #include "HitTestResult.h" 40 #include "HitTestResult.h"
42 #include "InspectorInstrumentation.h" 41 #include "InspectorInstrumentation.h"
43 #include "Logging.h"
44 #include "NodeList.h" 42 #include "NodeList.h"
45 #include "Page.h" 43 #include "Page.h"
46 #include "RenderApplet.h" 44 #include "RenderApplet.h"
47 #include "RenderEmbeddedObject.h" 45 #include "RenderEmbeddedObject.h"
48 #include "RenderFullScreen.h" 46 #include "RenderFullScreen.h"
49 #include "RenderGeometryMap.h" 47 #include "RenderGeometryMap.h"
50 #include "RenderIFrame.h" 48 #include "RenderIFrame.h"
51 #include "RenderLayerBacking.h" 49 #include "RenderLayerBacking.h"
52 #include "RenderReplica.h" 50 #include "RenderReplica.h"
53 #include "RenderVideo.h" 51 #include "RenderVideo.h"
54 #include "RenderView.h" 52 #include "RenderView.h"
55 #include "ScrollbarTheme.h"
56 #include "ScrollingConstraints.h" 53 #include "ScrollingConstraints.h"
57 #include "ScrollingCoordinator.h" 54 #include "ScrollingCoordinator.h"
58 #include "Settings.h" 55 #include "Settings.h"
59 #include "WebCoreMemoryInstrumentation.h" 56 #include "WebCoreMemoryInstrumentation.h"
57 #include "core/platform/HistogramSupport.h"
58 #include "core/platform/Logging.h"
59 #include "core/platform/ScrollbarTheme.h"
60 #include "core/platform/chromium/TraceEvent.h" 60 #include "core/platform/chromium/TraceEvent.h"
61 #include "core/platform/graphics/GraphicsLayer.h" 61 #include "core/platform/graphics/GraphicsLayer.h"
62 #include "core/platform/graphics/transforms/TransformState.h" 62 #include "core/platform/graphics/transforms/TransformState.h"
63 #include <wtf/MemoryInstrumentationHashMap.h> 63 #include <wtf/MemoryInstrumentationHashMap.h>
64 #include <wtf/TemporaryChange.h> 64 #include <wtf/TemporaryChange.h>
65 65
66 #if !LOG_DISABLED 66 #if !LOG_DISABLED
67 #include <wtf/CurrentTime.h> 67 #include <wtf/CurrentTime.h>
68 #endif 68 #endif
69 69
(...skipping 2688 matching lines...) Expand 10 before | Expand all | Expand 10 after
2758 info.addMember(m_layerForScrollCorner, "layerForScrollCorner"); 2758 info.addMember(m_layerForScrollCorner, "layerForScrollCorner");
2759 #if ENABLE(RUBBER_BANDING) 2759 #if ENABLE(RUBBER_BANDING)
2760 info.addMember(m_layerForOverhangAreas, "layerForOverhangAreas"); 2760 info.addMember(m_layerForOverhangAreas, "layerForOverhangAreas");
2761 info.addMember(m_contentShadowLayer, "contentShadowLayer"); 2761 info.addMember(m_contentShadowLayer, "contentShadowLayer");
2762 info.addMember(m_layerForTopOverhangArea, "layerForTopOverhangArea"); 2762 info.addMember(m_layerForTopOverhangArea, "layerForTopOverhangArea");
2763 info.addMember(m_layerForBottomOverhangArea, "layerForBottomOverhangArea"); 2763 info.addMember(m_layerForBottomOverhangArea, "layerForBottomOverhangArea");
2764 #endif 2764 #endif
2765 } 2765 }
2766 2766
2767 } // namespace WebCore 2767 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderLayer.cpp ('k') | Source/core/rendering/RenderListBox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698