diff options
author | tommi@chromium.org <tommi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-14 23:50:39 +0000 |
---|---|---|
committer | tommi@chromium.org <tommi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-11-14 23:50:39 +0000 |
commit | 12c0b1823a10d2b0cf63144bcd32b556c73177af (patch) | |
tree | 82eed146adb70c8dc8c0ab6272e6a15a28547497 /chrome/installer/setup/uninstall.h | |
parent | 6d34dbe21bbb05a52ea2d5614d518632d7ebc7bc (diff) | |
download | chromium_src-12c0b1823a10d2b0cf63144bcd32b556c73177af.zip chromium_src-12c0b1823a10d2b0cf63144bcd32b556c73177af.tar.gz chromium_src-12c0b1823a10d2b0cf63144bcd32b556c73177af.tar.bz2 |
Changing the installer switches from wchar_t[] to char[].
Because of this I'm also refactoring some code that before
was using wstring to build command lines by hand instead of
using the CommandLine class. Now we use CommandLine.
To get this to work correctly, I also needed to fix CommandLine::AppendArguments so I added a little test for it.
TEST=There should be no changes in functionality. Run all installer tests.
BUG=61609
Review URL: http://codereview.chromium.org/4928002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@66088 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/installer/setup/uninstall.h')
-rw-r--r-- | chrome/installer/setup/uninstall.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/chrome/installer/setup/uninstall.h b/chrome/installer/setup/uninstall.h index 6c6513a4d..d0dc8c3 100644 --- a/chrome/installer/setup/uninstall.h +++ b/chrome/installer/setup/uninstall.h @@ -42,11 +42,10 @@ void RemoveLegacyRegistryKeys(); // any checks for Chrome running. // cmd_line: CommandLine that contains information about the command that // was used to launch current uninstaller. -// cmd_params: Command line parameters passed to the uninstaller. installer_util::InstallStatus UninstallChrome( const std::wstring& exe_path, bool system_uninstall, bool remove_all, bool force_uninstall, - const CommandLine& cmd_line, const wchar_t* cmd_params); + const CommandLine& cmd_line); } // namespace installer_setup |