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

Side by Side Diff: cc/layer_tree_host.h

Issue 11552009: Add support for calculating the position of the top controls in the cc layer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add missing CC_EXPORT...learn to run try jobs manually 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 | « cc/compositor_frame_metadata.h ('k') | 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;
250 251
251 scoped_ptr<PrioritizedResourceManager> m_contentsTextureManager; 252 scoped_ptr<PrioritizedResourceManager> m_contentsTextureManager;
252 scoped_ptr<PrioritizedResource> m_surfaceMemoryPlaceholder; 253 scoped_ptr<PrioritizedResource> m_surfaceMemoryPlaceholder;
253 254
254 LayerTreeSettings m_settings; 255 LayerTreeSettings m_settings;
255 LayerTreeDebugState m_debugState; 256 LayerTreeDebugState m_debugState;
256 257
257 gfx::Size m_layoutViewportSize; 258 gfx::Size m_layoutViewportSize;
258 gfx::Size m_deviceViewportSize; 259 gfx::Size m_deviceViewportSize;
259 float m_deviceScaleFactor; 260 float m_deviceScaleFactor;
(...skipping 17 matching lines...) Expand all
277 scoped_ptr<AnimationRegistrar> m_animationRegistrar; 278 scoped_ptr<AnimationRegistrar> m_animationRegistrar;
278 279
279 static bool s_needsFilterContext; 280 static bool s_needsFilterContext;
280 281
281 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost); 282 DISALLOW_COPY_AND_ASSIGN(LayerTreeHost);
282 }; 283 };
283 284
284 } // namespace cc 285 } // namespace cc
285 286
286 #endif // CC_LAYER_TREE_HOST_H_ 287 #endif // CC_LAYER_TREE_HOST_H_
OLDNEW
« no previous file with comments | « cc/compositor_frame_metadata.h ('k') | cc/layer_tree_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698