Commit 81954b9b authored by Eugene But's avatar Eugene But Committed by Commit Bot

[ios] Fix arguments order for CreateSyntheticCrashReportForUte call

Swap product name and version calls as expected in function signature

Bug: 1103752
Change-Id: I9e21b8c57c6134aee6d66c0e9685146876ee7c16
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2368242
Auto-Submit: Eugene But <eugenebut@chromium.org>
Commit-Queue: Eugene But <eugenebut@chromium.org>
Commit-Queue: Mike Dougherty <michaeldo@chromium.org>
Reviewed-by: default avatarMike Dougherty <michaeldo@chromium.org>
Cr-Commit-Position: refs/heads/master@{#800613}
parent 6aa5623f
...@@ -243,10 +243,10 @@ void MobileSessionShutdownMetricsProvider::ProvidePreviousSessionData( ...@@ -243,10 +243,10 @@ void MobileSessionShutdownMetricsProvider::ProvidePreviousSessionData(
&CreateSyntheticCrashReportForUte, &CreateSyntheticCrashReportForUte,
cache_dir_path.Append(FILE_PATH_LITERAL("Breakpad")), cache_dir_path.Append(FILE_PATH_LITERAL("Breakpad")),
base::SysNSStringToUTF8(info_dict[@"BreakpadProductDisplay"]), base::SysNSStringToUTF8(info_dict[@"BreakpadProductDisplay"]),
base::SysNSStringToUTF8(info_dict[@"BreakpadVersion"]),
// Separate product makes throttling on the server easier. // Separate product makes throttling on the server easier.
base::SysNSStringToUTF8([NSString base::SysNSStringToUTF8([NSString
stringWithFormat:@"%@_UTE", info_dict[@"BreakpadProduct"]]), stringWithFormat:@"%@_UTE", info_dict[@"BreakpadProduct"]]),
base::SysNSStringToUTF8(info_dict[@"BreakpadVersion"]),
base::SysNSStringToUTF8(info_dict[@"BreakpadURL"]))); base::SysNSStringToUTF8(info_dict[@"BreakpadURL"])));
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment