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

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

Issue 185293002: Factor GraphicsLayerUpdater out of RenderLayerCompositor (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Address reviewer comments Created 6 years, 9 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/core.gypi ('k') | Source/core/rendering/compositing/GraphicsLayerUpdater.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, 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 #include "core/page/scrolling/ScrollingCoordinator.h" 42 #include "core/page/scrolling/ScrollingCoordinator.h"
43 #include "core/plugins/PluginView.h" 43 #include "core/plugins/PluginView.h"
44 #include "core/rendering/FilterEffectRenderer.h" 44 #include "core/rendering/FilterEffectRenderer.h"
45 #include "core/rendering/RenderApplet.h" 45 #include "core/rendering/RenderApplet.h"
46 #include "core/rendering/RenderEmbeddedObject.h" 46 #include "core/rendering/RenderEmbeddedObject.h"
47 #include "core/rendering/RenderIFrame.h" 47 #include "core/rendering/RenderIFrame.h"
48 #include "core/rendering/RenderImage.h" 48 #include "core/rendering/RenderImage.h"
49 #include "core/rendering/RenderLayerStackingNodeIterator.h" 49 #include "core/rendering/RenderLayerStackingNodeIterator.h"
50 #include "core/rendering/RenderVideo.h" 50 #include "core/rendering/RenderVideo.h"
51 #include "core/rendering/RenderView.h" 51 #include "core/rendering/RenderView.h"
52 #include "core/rendering/compositing/GraphicsLayerUpdater.h"
52 #include "core/rendering/compositing/RenderLayerCompositor.h" 53 #include "core/rendering/compositing/RenderLayerCompositor.h"
53 #include "core/rendering/style/KeyframeList.h" 54 #include "core/rendering/style/KeyframeList.h"
54 #include "platform/LengthFunctions.h" 55 #include "platform/LengthFunctions.h"
55 #include "platform/fonts/FontCache.h" 56 #include "platform/fonts/FontCache.h"
56 #include "platform/graphics/GraphicsContext.h" 57 #include "platform/graphics/GraphicsContext.h"
57 #include "wtf/CurrentTime.h" 58 #include "wtf/CurrentTime.h"
58 #include "wtf/text/StringBuilder.h" 59 #include "wtf/text/StringBuilder.h"
59 60
60 using namespace std; 61 using namespace std;
61 62
(...skipping 2101 matching lines...) Expand 10 before | Expand all | Expand 10 after
2163 } else if (graphicsLayer == m_scrollingContentsLayer.get()) { 2164 } else if (graphicsLayer == m_scrollingContentsLayer.get()) {
2164 name = "Scrolling Contents Layer"; 2165 name = "Scrolling Contents Layer";
2165 } else { 2166 } else {
2166 ASSERT_NOT_REACHED(); 2167 ASSERT_NOT_REACHED();
2167 } 2168 }
2168 2169
2169 return name; 2170 return name;
2170 } 2171 }
2171 2172
2172 } // namespace WebCore 2173 } // namespace WebCore
OLDNEW
« no previous file with comments | « Source/core/core.gypi ('k') | Source/core/rendering/compositing/GraphicsLayerUpdater.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698