diff options
author | erikwright@chromium.org <erikwright@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-19 22:19:15 +0000 |
---|---|---|
committer | erikwright@chromium.org <erikwright@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-07-19 22:19:15 +0000 |
commit | 0b9db6796ae57fe8bb36b2e89528efa51f8e938b (patch) | |
tree | 6129eef9c5ab3698b7f1b86a7dd728f645a34d63 /chrome/installer | |
parent | 58cee002f1006ba3d9baa3b64fcf37be340a700c (diff) | |
download | chromium_src-0b9db6796ae57fe8bb36b2e89528efa51f8e938b.zip chromium_src-0b9db6796ae57fe8bb36b2e89528efa51f8e938b.tar.gz chromium_src-0b9db6796ae57fe8bb36b2e89528efa51f8e938b.tar.bz2 |
Add markers to app_host.exe and setup.exe to allow them to expose app commands via Google Update.
In http://codereview.chromium.org/10665002/ :
setup.exe is used by the 'quick-enable-application-host' app command.
app_host.exe is used by the 'install-application' app command.
Pending Omaha changes will require executables referenced by app commands to include a resource marker. This CL adds that marker to the appropriate exes.
BUG=None
TEST=None
Review URL: https://chromiumcodereview.appspot.com/10795026
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@147552 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/installer')
-rw-r--r-- | chrome/installer/setup/setup.rc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/chrome/installer/setup/setup.rc b/chrome/installer/setup/setup.rc index c6d4b95..0dae83b 100644 --- a/chrome/installer/setup/setup.rc +++ b/chrome/installer/setup/setup.rc @@ -134,5 +134,15 @@ IDR_OEMPG_ZH_TW.HTML HTML "eula\\oem_zh-TW.html" #include "setup_exe_version.rc" ///////////////////////////////////////////////////////////////////////////// +// +// GOOGLEUPDATEAPPLICATIONCOMMANDS is a "well-known" marker resource defined +// by Omaha. Executables must both be signed by Google and contain the marker +// in order to expose application commands. +// +#define IDR_GOOGLE_UPDATE_APP_COMMANDS_MARKUP 1 + +IDR_GOOGLE_UPDATE_APP_COMMANDS_MARKUP GOOGLEUPDATEAPPLICATIONCOMMANDS { 1L } + +///////////////////////////////////////////////////////////////////////////// #endif // not APSTUDIO_INVOKED |