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

Unified Diff: cc/layer_iterator.h

Issue 12774006: cc: Chromify Layer and LayerImpl classes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: MoreAndroidCompilings Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « cc/layer_impl_unittest.cc ('k') | cc/layer_iterator_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/layer_iterator.h
diff --git a/cc/layer_iterator.h b/cc/layer_iterator.h
index 13d8255d0ba1155b22a6d729acc307f0e95653d5..893a667da7231327d10ef0a1721ea7cec1401bba 100644
--- a/cc/layer_iterator.h
+++ b/cc/layer_iterator.h
@@ -124,7 +124,7 @@ private:
, m_targetRenderSurfaceLayerIndex(0)
{
for (size_t i = 0; i < renderSurfaceLayerList->size(); ++i) {
- if (!(*renderSurfaceLayerList)[i]->renderSurface()) {
+ if (!(*renderSurfaceLayerList)[i]->render_surface()) {
NOTREACHED();
m_actions.end(*this);
return;
@@ -145,7 +145,7 @@ private:
inline bool currentLayerRepresentsContributingRenderSurface() const { return LayerTreeHostCommon::renderSurfaceContributesToTarget<LayerType>(currentLayer(), targetRenderSurfaceLayer()->id()); }
inline bool currentLayerRepresentsTargetRenderSurface() const { return m_currentLayerIndex == LayerIteratorValue::LayerIndexRepresentingTargetRenderSurface; }
- inline RenderSurfaceType* targetRenderSurface() const { return targetRenderSurfaceLayer()->renderSurface(); }
+ inline RenderSurfaceType* targetRenderSurface() const { return targetRenderSurfaceLayer()->render_surface(); }
inline const LayerList& targetRenderSurfaceChildren() const { return targetRenderSurface()->layer_list(); }
IteratorActionType m_actions;
« no previous file with comments | « cc/layer_impl_unittest.cc ('k') | cc/layer_iterator_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698