commit | aace0cfef2d51e7f038b07d5df26d126e4160f70 | [log] [tgz] |
---|---|---|
author | Jan Wilken Dörrie <[email protected]> | Thu Mar 11 22:01:58 2021 |
committer | Chromium LUCI CQ <[email protected]> | Thu Mar 11 22:01:58 2021 |
tree | 97fe44ff39f485f4eea731927f060a9323dc66c5 | |
parent | 64505a98c82be7545c9010e77aebc73107f60e9b [diff] [blame] |
[LSC] Replace base::string16 with std::u16string in //{chrome*,content} This change replaces base::string16 with std::u16string in //chrome, //chromecast, //chromeos and //content. Reproduction steps: $ git grep -lw 'base::string16' chrome* content | \ xargs sed -i 's/\bbase::string16\b/std::u16string/g' $ git cl format Bug: 1184339 Change-Id: I8fae0ab25b5d9bf1cb416ae5f47d7f680fb8f3ea Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2752229 Commit-Queue: Jan Wilken Dörrie <[email protected]> Commit-Queue: Daniel Cheng <[email protected]> Owners-Override: Daniel Cheng <[email protected]> Auto-Submit: Jan Wilken Dörrie <[email protected]> Reviewed-by: Daniel Cheng <[email protected]> Cr-Commit-Position: refs/heads/master@{#862152}
diff --git a/content/shell/browser/shell_platform_delegate_aura.cc b/content/shell/browser/shell_platform_delegate_aura.cc index 61006b9..13ee15e 100644 --- a/content/shell/browser/shell_platform_delegate_aura.cc +++ b/content/shell/browser/shell_platform_delegate_aura.cc
@@ -80,7 +80,7 @@ void ShellPlatformDelegate::SetIsLoading(Shell* shell, bool loading) {} void ShellPlatformDelegate::SetTitle(Shell* shell, - const base::string16& title) {} + const std::u16string& title) {} void ShellPlatformDelegate::MainFrameCreated(Shell* shell) {}