| Index: chrome/installer/util/util_constants.cc
|
| diff --git a/chrome/installer/util/util_constants.cc b/chrome/installer/util/util_constants.cc
|
| index c380a5f0a1c4e56fe1caecb278e3ea1c662adb61..e293e76af9e513d18229f2f82d066e14575bd8ef 100644
|
| --- a/chrome/installer/util/util_constants.cc
|
| +++ b/chrome/installer/util/util_constants.cc
|
| @@ -196,6 +196,15 @@ const char kExperimentGroup[] = "experiment-group";
|
| // to. See DuplicateGoogleUpdateSystemClientKey for details.
|
| const char kToastResultsKey[] = "toast-results-key";
|
|
|
| +// Applies a binary patch to a file. The input, patch, and the output file are
|
| +// specified as command line arguments following the --patch switch.
|
| +// Ex: --patch=courgette --input_file='input' --patch_file='patch'
|
| +// --output_file='output'
|
| +const char kPatch[] = "patch";
|
| +const char kInputFile[] = "input-file";
|
| +const char kPatchFile[] = "patch-file";
|
| +const char kOutputFile[] = "output-file";
|
| +
|
| } // namespace switches
|
|
|
| // The Active Setup executable will be an identical copy of setup.exe; this is
|
| @@ -261,4 +270,7 @@ const wchar_t kChromeChannelStable[] = L"";
|
|
|
| const size_t kMaxAppModelIdLength = 64U;
|
|
|
| +const char kCourgette[] = "courgette";
|
| +const char kBsdiff[] = "bsdiff";
|
| +
|
| } // namespace installer
|
|
|