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

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

Issue 64643009: Remove duplicated headers from core/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase 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
« no previous file with comments | « Source/core/rendering/BidiRun.cpp ('k') | Source/core/rendering/HitTestResult.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 26 matching lines...) Expand all
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" 44 #include "core/platform/graphics/FontCache.h"
45 #include "core/platform/graphics/GraphicsContext.h" 45 #include "core/platform/graphics/GraphicsContext.h"
46 #include "core/platform/graphics/GraphicsContext3D.h" 46 #include "core/platform/graphics/GraphicsContext3D.h"
47 #include "core/platform/graphics/GraphicsLayer.h"
48 #include "core/platform/graphics/filters/custom/CustomFilterOperation.h" 47 #include "core/platform/graphics/filters/custom/CustomFilterOperation.h"
49 #include "core/plugins/PluginView.h" 48 #include "core/plugins/PluginView.h"
50 #include "core/rendering/FilterEffectRenderer.h" 49 #include "core/rendering/FilterEffectRenderer.h"
51 #include "core/rendering/RenderApplet.h" 50 #include "core/rendering/RenderApplet.h"
52 #include "core/rendering/RenderEmbeddedObject.h" 51 #include "core/rendering/RenderEmbeddedObject.h"
53 #include "core/rendering/RenderIFrame.h" 52 #include "core/rendering/RenderIFrame.h"
54 #include "core/rendering/RenderImage.h" 53 #include "core/rendering/RenderImage.h"
55 #include "core/rendering/RenderLayer.h"
56 #include "core/rendering/RenderLayerCompositor.h" 54 #include "core/rendering/RenderLayerCompositor.h"
57 #include "core/rendering/RenderLayerStackingNodeIterator.h" 55 #include "core/rendering/RenderLayerStackingNodeIterator.h"
58 #include "core/rendering/RenderVideo.h" 56 #include "core/rendering/RenderVideo.h"
59 #include "core/rendering/RenderView.h" 57 #include "core/rendering/RenderView.h"
60 #include "core/rendering/animation/WebAnimationProvider.h" 58 #include "core/rendering/animation/WebAnimationProvider.h"
61 #include "core/rendering/style/KeyframeList.h" 59 #include "core/rendering/style/KeyframeList.h"
62 #include "platform/LengthFunctions.h" 60 #include "platform/LengthFunctions.h"
63 #include "wtf/CurrentTime.h" 61 #include "wtf/CurrentTime.h"
64 #include "wtf/text/StringBuilder.h" 62 #include "wtf/text/StringBuilder.h"
65 63
(...skipping 1965 matching lines...) Expand 10 before | Expand all | Expand 10 after
2031 } else if (graphicsLayer == m_scrollingContentsLayer.get()) { 2029 } else if (graphicsLayer == m_scrollingContentsLayer.get()) {
2032 name = "Scrolling Contents Layer"; 2030 name = "Scrolling Contents Layer";
2033 } else { 2031 } else {
2034 ASSERT_NOT_REACHED(); 2032 ASSERT_NOT_REACHED();
2035 } 2033 }
2036 2034
2037 return name; 2035 return name;
2038 } 2036 }
2039 2037
2040 } // namespace WebCore 2038 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/rendering/BidiRun.cpp ('k') | Source/core/rendering/HitTestResult.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698