diff options
author | brettw <brettw@chromium.org> | 2015-06-24 13:54:45 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-06-24 20:55:38 +0000 |
commit | e6dae46fc681a8ad62f6937a6ac1cab3d51938a9 (patch) | |
tree | 2f75f6b3af2a17c8b1512b6881b00a8c9595ac96 /chrome/installer/setup/setup_main.cc | |
parent | 2ef675dbcd5943aad03184b67696330cc910568d (diff) | |
download | chromium_src-e6dae46fc681a8ad62f6937a6ac1cab3d51938a9.zip chromium_src-e6dae46fc681a8ad62f6937a6ac1cab3d51938a9.tar.gz chromium_src-e6dae46fc681a8ad62f6937a6ac1cab3d51938a9.tar.bz2 |
Add more string_util functions to base namespace.
Moves ReplaceFirstSubstringAfterOffset. It also changes the find/replace arguments to be string pieces (normally these are constants).
TBR=gauravsh@chromium.org for chromeos/network
Review URL: https://codereview.chromium.org/1200393002
Cr-Commit-Position: refs/heads/master@{#335999}
Diffstat (limited to 'chrome/installer/setup/setup_main.cc')
-rw-r--r-- | chrome/installer/setup/setup_main.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/installer/setup/setup_main.cc b/chrome/installer/setup/setup_main.cc index d50aa1e..0fc346d 100644 --- a/chrome/installer/setup/setup_main.cc +++ b/chrome/installer/setup/setup_main.cc @@ -682,7 +682,7 @@ void RepairChromeIfBroken(const InstallationState& original_state, // Replace --uninstall with --do-not-launch-chrome to cause chrome to // self-repair. - ReplaceFirstSubstringAfterOffset( + base::ReplaceFirstSubstringAfterOffset( &setup_args, 0, base::UTF8ToUTF16(installer::switches::kUninstall), base::UTF8ToUTF16(installer::switches::kDoNotLaunchChrome)); base::CommandLine setup_command(base::CommandLine::NO_PROGRAM); |