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

Unified Diff: third_party/WebKit/Source/platform/graphics/CompositorMutation.h

Issue 1922393002: CC Animation: Unify ElementId in Blink Compositor Worker. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@player
Patch Set: Remove NextElementId. Created 4 years, 7 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: third_party/WebKit/Source/platform/graphics/CompositorMutation.h
diff --git a/third_party/WebKit/Source/platform/graphics/CompositorMutation.h b/third_party/WebKit/Source/platform/graphics/CompositorMutation.h
index 971540af3407939f5dabee46ae6a58d93a38ce1d..db6323c8f8f7d76aa953a3841994d669865138c2 100644
--- a/third_party/WebKit/Source/platform/graphics/CompositorMutation.h
+++ b/third_party/WebKit/Source/platform/graphics/CompositorMutation.h
@@ -5,6 +5,7 @@
#ifndef CompositorMutation_h
#define CompositorMutation_h
+#include "platform/graphics/CompositorElementId.h"
#include "platform/graphics/CompositorMutableProperties.h"
#include "third_party/skia/include/core/SkMatrix44.h"
#include "wtf/HashMap.h"
@@ -53,7 +54,7 @@ private:
};
struct CompositorMutations {
- HashMap<uint64_t, OwnPtr<CompositorMutation>> map;
+ HashMap<CompositorElementId, OwnPtr<CompositorMutation>> map;
};
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698