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 |