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

Unified Diff: third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositorTest.cpp

Issue 2661523003: cc: Merge LayerTree into the LayerTreeHost. (Closed)
Patch Set: auto Created 3 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositorTest.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositorTest.cpp b/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositorTest.cpp
index 9044809a6cadfe204b54ea17116d1e9748b7ef41..ecead68b8b3ae8726e9c1a9421cde3c2f620f7ff 100644
--- a/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositorTest.cpp
+++ b/third_party/WebKit/Source/platform/graphics/compositing/PaintArtifactCompositorTest.cpp
@@ -92,27 +92,23 @@ class PaintArtifactCompositorTestWithPropertyTrees
const cc::PropertyTrees& propertyTrees() {
return *m_webLayerTreeView->layerTreeHost()
- ->GetLayerTree()
->property_trees();
}
int elementIdToEffectNodeIndex(CompositorElementId elementId) {
return m_webLayerTreeView->layerTreeHost()
- ->GetLayerTree()
->property_trees()
->element_id_to_effect_node_index[elementId];
}
int elementIdToTransformNodeIndex(CompositorElementId elementId) {
return m_webLayerTreeView->layerTreeHost()
- ->GetLayerTree()
->property_trees()
->element_id_to_transform_node_index[elementId];
}
int elementIdToScrollNodeIndex(CompositorElementId elementId) {
return m_webLayerTreeView->layerTreeHost()
- ->GetLayerTree()
->property_trees()
->element_id_to_scroll_node_index[elementId];
}

Powered by Google App Engine
This is Rietveld 408576698