diff options
author | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-16 22:54:44 +0000 |
---|---|---|
committer | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-16 22:54:44 +0000 |
commit | 587702ac45dbb2f7b7989d94560bd98bff4bdefb (patch) | |
tree | 459b2d7a5f5fbd67489720a82a399b7fe174fb61 /chrome/browser/mac/keystone_glue.mm | |
parent | df6a024c8ef52bd882e2ef046d8b55fe9a4b2167 (diff) | |
download | chromium_src-587702ac45dbb2f7b7989d94560bd98bff4bdefb.zip chromium_src-587702ac45dbb2f7b7989d94560bd98bff4bdefb.tar.gz chromium_src-587702ac45dbb2f7b7989d94560bd98bff4bdefb.tar.bz2 |
Update KeystoneRegistration.framework to 1.2.0.6782.
The big change in this version is that an installation attempt initiated by
the application can show up as ondemand on the server. This will allow us to
provide throttled Mac downloads (such as a "5% push") with correct behavior.
BUG=35495
R=thakis@chromium.org
Review URL: https://codereview.chromium.org/141193002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@245361 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/mac/keystone_glue.mm')
-rw-r--r-- | chrome/browser/mac/keystone_glue.mm | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/chrome/browser/mac/keystone_glue.mm b/chrome/browser/mac/keystone_glue.mm index dea4bb4..b0b2939 100644 --- a/chrome/browser/mac/keystone_glue.mm +++ b/chrome/browser/mac/keystone_glue.mm @@ -559,7 +559,11 @@ NSString* const kVersionKey = @"KSVersion"; [self updateStatus:kAutoupdateChecking version:nil]; - [registration_ checkForUpdate]; + // All checks from inside Chrome are considered user-initiated, because they + // only happen following a user action, such as visiting the about page. + // Non-user-initiated checks are the periodic checks automatically made by + // Keystone, which don't come through this code path (or even this process). + [registration_ checkForUpdateWasUserInitiated:YES]; // Upon completion, ksr::KSRegistrationCheckForUpdateNotification will be // posted, and -checkForUpdateComplete: will be called. |