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

Side by Side Diff: cc/layer_tree_host.h

Issue 11967021: Remove top controls layer from cc/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove invalid TODO Created 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | cc/layer_tree_host.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 The Chromium Authors. All rights reserved. 1 // Copyright 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CC_LAYER_TREE_HOST_H_ 5 #ifndef CC_LAYER_TREE_HOST_H_
6 #define CC_LAYER_TREE_HOST_H_ 6 #define CC_LAYER_TREE_HOST_H_
7 7
8 #include <limits> 8 #include <limits>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 240
241 int m_commitNumber; 241 int m_commitNumber;
242 RenderingStats m_renderingStats; 242 RenderingStats m_renderingStats;
243 243
244 bool m_rendererInitialized; 244 bool m_rendererInitialized;
245 bool m_outputSurfaceLost; 245 bool m_outputSurfaceLost;
246 int m_numFailedRecreateAttempts; 246 int m_numFailedRecreateAttempts;
247 247
248 scoped_refptr<Layer> m_rootLayer; 248 scoped_refptr<Layer> m_rootLayer;
249 scoped_refptr<HeadsUpDisplayLayer> m_hudLayer; 249 scoped_refptr<HeadsUpDisplayLayer> m_hudLayer;
250 scoped_refptr<Layer> m_topControlsContentLayer;
251 250
252 scoped_ptr<PrioritizedResourceManager> m_contentsTextureManager; 251 scoped_ptr<PrioritizedResourceManager> m_contentsTextureManager;
253 scoped_ptr<PrioritizedResource> m_surfaceMemoryPlaceholder; 252 scoped_ptr<PrioritizedResource> m_surfaceMemoryPlaceholder;
254 253
255 LayerTreeSettings m_settings; 254 LayerTreeSettings m_settings;
256 LayerTreeDebugState m_debugState; 255 LayerTreeDebugState m_debugState;
257 256
258 gfx::Size m_layoutViewportSize; 257 gfx::Size m_layoutViewportSize;
259 gfx::Size m_deviceViewportSize; 258 gfx::Size m_deviceViewportSize;
260 float m_deviceScaleFactor; 259 float m_deviceScaleFactor;
(...skipping 17 matching lines...) Expand all
278 scoped_ptr<AnimationRegistrar> m_animationRegistrar; 277 scoped_ptr<AnimationRegistrar> m_animationRegistrar;
279 278
280 static bool s_needsFilterContext; 279 static bool s_needsFilterContext;
281 280
282 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost); 281 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost);
283 }; 282 };
284 283
285 } // namespace cc 284 } // namespace cc
286 285
287 #endif // CC_LAYER_TREE_HOST_H_ 286 #endif // CC_LAYER_TREE_HOST_H_
OLDNEW
« no previous file with comments | « no previous file | cc/layer_tree_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698