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

Unified Diff: third_party/WebKit/Source/platform/graphics/CompositorElementId.cpp

Issue 2860293002: Change cc::ElementId to be a uint64_t (Closed)
Patch Set: none Created 3 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/CompositorElementId.cpp
diff --git a/third_party/WebKit/Source/platform/graphics/CompositorElementId.cpp b/third_party/WebKit/Source/platform/graphics/CompositorElementId.cpp
index eeb495fbacd4780e0671a07ae53022b945c3aa39..f6e8c8043359ae61dd7463ec40f552653d81c26a 100644
--- a/third_party/WebKit/Source/platform/graphics/CompositorElementId.cpp
+++ b/third_party/WebKit/Source/platform/graphics/CompositorElementId.cpp
@@ -9,7 +9,15 @@ namespace blink {
CompositorElementId CreateCompositorElementId(
int dom_node_id,
CompositorSubElementId sub_element_id) {
- return CompositorElementId(dom_node_id, static_cast<int>(sub_element_id));
+ DCHECK(dom_node_id > 0 && dom_node_id < std::numeric_limits<int>::max() / 4);
suzyh_UTC10 (ex-contributor) 2017/05/05 04:27:31 Please make this 4 a named constant or similar rat
chrishtr 2017/05/05 05:34:52 Done.
+ int element_id = dom_node_id;
suzyh_UTC10 (ex-contributor) 2017/05/05 04:27:31 Use one of the unsigned types rather than int?
chrishtr 2017/05/05 05:34:52 Done. Sorry for forgetting to update this file.
+ element_id = element_id << 2; // Shift to make room for enum bits.
suzyh_UTC10 (ex-contributor) 2017/05/05 04:27:31 Nit: specify "sub_element_id enum bits"
chrishtr 2017/05/05 05:34:52 Done.
+ element_id += static_cast<int>(sub_element_id);
+ return CompositorElementId(element_id);
+}
+
+int DomNodeIdFromCompositorElementId(CompositorElementId id) {
+ return id >> 2;
}
} // namespace blink

Powered by Google App Engine
This is Rietveld 408576698