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

Unified Diff: Source/core/rendering/compositing/CompositingInputsUpdater.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/CompositingInputsUpdater.h
diff --git a/Source/core/rendering/compositing/CompositingPropertyUpdater.h b/Source/core/rendering/compositing/CompositingInputsUpdater.h
similarity index 61%
rename from Source/core/rendering/compositing/CompositingPropertyUpdater.h
rename to Source/core/rendering/compositing/CompositingInputsUpdater.h
index 7c10ed90fd335615c68577cce70957d3859117cc..d3ca639910a76fc62472d0495f8345b53a12e232 100644
--- a/Source/core/rendering/compositing/CompositingPropertyUpdater.h
+++ b/Source/core/rendering/compositing/CompositingInputsUpdater.h
@@ -2,8 +2,8 @@
// 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
+#ifndef CompositingInputsUpdater_h
+#define CompositingInputsUpdater_h
#include "core/rendering/RenderGeometryMap.h"
@@ -11,7 +11,7 @@ namespace WebCore {
class RenderLayer;
-class CompositingPropertyUpdater {
+class CompositingInputsUpdater {
private:
struct AncestorInfo {
AncestorInfo()
@@ -25,18 +25,18 @@ private:
};
public:
- explicit CompositingPropertyUpdater(RenderLayer* rootRenderLayer);
- ~CompositingPropertyUpdater();
+ explicit CompositingInputsUpdater(RenderLayer* rootRenderLayer);
+ ~CompositingInputsUpdater();
enum UpdateType {
DoNotForceUpdate,
ForceUpdate,
};
- void updateAncestorDependentProperties(RenderLayer*, UpdateType = DoNotForceUpdate, AncestorInfo = AncestorInfo());
+ void update(RenderLayer*, UpdateType = DoNotForceUpdate, AncestorInfo = AncestorInfo());
#if !ASSERT_DISABLED
- static void assertNeedsToUpdateAncestorDependantPropertiesBitsCleared(RenderLayer*);
+ static void assertNeedsCompositingInputsUpdateBitsCleared(RenderLayer*);
#endif
private:
@@ -46,4 +46,4 @@ private:
} // namespace WebCore
-#endif // CompositingPropertyUpdater_h
+#endif // CompositingInputsUpdater_h
« no previous file with comments | « Source/core/rendering/RenderLayerScrollableArea.cpp ('k') | Source/core/rendering/compositing/CompositingInputsUpdater.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698