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

Unified Diff: Source/core/rendering/compositing/CompositingPropertyUpdater.h

Issue 322163003: Rename AncestorDependentProperties to CompositingInputs (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Moar renaming 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 side-by-side diff with in-line comments
Download patch
Index: Source/core/rendering/compositing/CompositingPropertyUpdater.h
diff --git a/Source/core/rendering/compositing/CompositingPropertyUpdater.h b/Source/core/rendering/compositing/CompositingPropertyUpdater.h
deleted file mode 100644
index 7c10ed90fd335615c68577cce70957d3859117cc..0000000000000000000000000000000000000000
--- a/Source/core/rendering/compositing/CompositingPropertyUpdater.h
+++ /dev/null
@@ -1,49 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CompositingPropertyUpdater_h
-#define CompositingPropertyUpdater_h
-
-#include "core/rendering/RenderGeometryMap.h"
-
-namespace WebCore {
-
-class RenderLayer;
-
-class CompositingPropertyUpdater {
-private:
- struct AncestorInfo {
- AncestorInfo()
- : enclosingCompositedLayer(0)
- , ancestorScrollingLayer(0)
- {
- }
-
- RenderLayer* enclosingCompositedLayer;
- RenderLayer* ancestorScrollingLayer;
- };
-
-public:
- explicit CompositingPropertyUpdater(RenderLayer* rootRenderLayer);
- ~CompositingPropertyUpdater();
-
- enum UpdateType {
- DoNotForceUpdate,
- ForceUpdate,
- };
-
- void updateAncestorDependentProperties(RenderLayer*, UpdateType = DoNotForceUpdate, AncestorInfo = AncestorInfo());
-
-#if !ASSERT_DISABLED
- static void assertNeedsToUpdateAncestorDependantPropertiesBitsCleared(RenderLayer*);
-#endif
-
-private:
- RenderGeometryMap m_geometryMap;
- RenderLayer* m_rootRenderLayer;
-};
-
-} // namespace WebCore
-
-#endif // CompositingPropertyUpdater_h

Powered by Google App Engine
This is Rietveld 408576698