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

Side by Side Diff: Source/core/rendering/compositing/CompositingPropertyUpdater.h

Issue 320103005: Delete RenderLayerCompositor::m_compositingLayersNeedRebuild (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: less wrong code Created 6 years, 6 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 CompositingPropertyUpdater_h 5 #ifndef CompositingPropertyUpdater_h
6 #define CompositingPropertyUpdater_h 6 #define CompositingPropertyUpdater_h
7 7
8 #include "core/rendering/RenderGeometryMap.h" 8 #include "core/rendering/RenderGeometryMap.h"
9 9
10 namespace WebCore { 10 namespace WebCore {
(...skipping 15 matching lines...) Expand all
26 26
27 public: 27 public:
28 explicit CompositingPropertyUpdater(RenderLayer* rootRenderLayer); 28 explicit CompositingPropertyUpdater(RenderLayer* rootRenderLayer);
29 ~CompositingPropertyUpdater(); 29 ~CompositingPropertyUpdater();
30 30
31 enum UpdateType { 31 enum UpdateType {
32 DoNotForceUpdate, 32 DoNotForceUpdate,
33 ForceUpdate, 33 ForceUpdate,
34 }; 34 };
35 35
36 void updateAncestorDependentProperties(RenderLayer*, UpdateType, AncestorInf o = AncestorInfo()); 36 void updateAncestorDependentProperties(RenderLayer*, UpdateType = DoNotForce Update, AncestorInfo = AncestorInfo());
37 37
38 #if !ASSERT_DISABLED 38 #if !ASSERT_DISABLED
39 static void assertNeedsToUpdateAncestorDependantPropertiesBitsCleared(Render Layer*); 39 static void assertNeedsToUpdateAncestorDependantPropertiesBitsCleared(Render Layer*);
40 #endif 40 #endif
41 41
42 private: 42 private:
43 RenderGeometryMap m_geometryMap; 43 RenderGeometryMap m_geometryMap;
44 RenderLayer* m_rootRenderLayer; 44 RenderLayer* m_rootRenderLayer;
45 }; 45 };
46 46
47 } // namespace WebCore 47 } // namespace WebCore
48 48
49 #endif // CompositingPropertyUpdater_h 49 #endif // CompositingPropertyUpdater_h
OLDNEW
« no previous file with comments | « Source/core/rendering/RenderLayerStackingNode.cpp ('k') | Source/core/rendering/compositing/GraphicsLayerUpdater.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698