mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	Update to Chromium version 122.0.6261.0 (#1250580)
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.
This commit is contained in:
		@@ -454,7 +454,7 @@ index eb5bcfe0234c3..8963b26806922 100644
 | 
			
		||||
           handler_path, *database_path, metrics_path, url,
 | 
			
		||||
           GetProcessSimpleAnnotations(), arguments, true, false);
 | 
			
		||||
diff --git components/crash/core/app/crashpad_win.cc components/crash/core/app/crashpad_win.cc
 | 
			
		||||
index 9ab5fb1c82275..740014c1119bd 100644
 | 
			
		||||
index 15addd5c5e663..f30027b9b6f3c 100644
 | 
			
		||||
--- components/crash/core/app/crashpad_win.cc
 | 
			
		||||
+++ components/crash/core/app/crashpad_win.cc
 | 
			
		||||
@@ -36,8 +36,8 @@ void GetPlatformCrashpadAnnotations(
 | 
			
		||||
@@ -525,7 +525,7 @@ index 9ab5fb1c82275..740014c1119bd 100644
 | 
			
		||||
         start_arguments.push_back(std::string("--user-data-dir=") +
 | 
			
		||||
                                   user_data_dir);
 | 
			
		||||
@@ -124,9 +131,12 @@ bool PlatformCrashpadInitialization(
 | 
			
		||||
       start_arguments.push_back("/prefetch:7");
 | 
			
		||||
       start_arguments.push_back("/prefetch:4");
 | 
			
		||||
     } else {
 | 
			
		||||
       base::FilePath exe_dir = exe_file.DirName();
 | 
			
		||||
-      exe_file = exe_dir.Append(FILE_PATH_LITERAL("crashpad_handler.exe"));
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user