mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-02-17 04:30:46 +01:00
Frame identifiers have changed from int64_t to string type. This is due to https://crbug.com/1502660 which removes access to frame routing IDs in the renderer process. New cross-process frame identifiers are 160-bit values (32-bit child process ID + 128-bit local frame token) and most easily represented as strings. All other frame-related expectations and behaviors remain the same.
21 lines
666 B
Diff
21 lines
666 B
Diff
diff --git tools/gritsettings/resource_ids.spec tools/gritsettings/resource_ids.spec
|
|
index df93fa972dff6..3228d8377f597 100644
|
|
--- tools/gritsettings/resource_ids.spec
|
|
+++ tools/gritsettings/resource_ids.spec
|
|
@@ -1269,6 +1269,15 @@
|
|
# END "everything else" section.
|
|
# Everything but chrome/, components/, content/, and ios/
|
|
|
|
+ "cef/libcef/resources/cef_resources.grd": {
|
|
+ "META": {"align": 31500},
|
|
+ "includes": [31500],
|
|
+ },
|
|
+ "cef/libcef/resources/cef_strings.grd": {
|
|
+ "META": {"align": 32000},
|
|
+ "messages": [32000],
|
|
+ },
|
|
+
|
|
# Thinking about appending to the end?
|
|
# Please read the header and find the right section above instead.
|
|
}
|