diff options
author | dennisjeffrey@chromium.org <dennisjeffrey@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-21 19:38:16 +0000 |
---|---|---|
committer | dennisjeffrey@chromium.org <dennisjeffrey@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-21 19:38:16 +0000 |
commit | c3f5f213d866eab2bfbb9cbf04fcd2ca7b856e31 (patch) | |
tree | 5b6e4a7a77ab5838263af18f301b9de3adfccf25 /content | |
parent | 855331089ebba41ed720cf46b4fb1f97cd3e381b (diff) | |
download | chromium_src-c3f5f213d866eab2bfbb9cbf04fcd2ca7b856e31.zip chromium_src-c3f5f213d866eab2bfbb9cbf04fcd2ca7b856e31.tar.gz chromium_src-c3f5f213d866eab2bfbb9cbf04fcd2ca7b856e31.tar.bz2 |
Add progress notifications for extension updates (from: 6665014)
Taking ownership of existing issue 6665014:
"The immediate reason is for some automated tests to take advantage of these,
but we also want this for our eventual goal of showing progress when users
do a manual force of extension updates."
BUG=75213
TEST=(should be covered by existing tests)
Review URL: http://codereview.chromium.org/6708024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78907 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content')
-rw-r--r-- | content/common/notification_type.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/content/common/notification_type.h b/content/common/notification_type.h index 74dd32e..c91c3f5 100644 --- a/content/common/notification_type.h +++ b/content/common/notification_type.h @@ -992,6 +992,21 @@ class NotificationType { // object. EXTENSION_PREF_CHANGED, + // Sent when the extension updater starts checking for updates to installed + // extensions. The source is a Profile, and there are no details. + EXTENSION_UPDATING_STARTED, + + // Sent when the extension updater is finished checking for updates to + // installed extensions. The source is a Profile, and there are no details. + // NOTE: It's possible that there are extension updates still being + // installed by the extension service at the time this notification fires. + EXTENSION_UPDATING_FINISHED, + + // The extension updater found an update and will attempt to download and + // install it. The source is a Profile, and the details are an extension id + // (const std::string). + EXTENSION_UPDATE_FOUND, + // Desktop Notifications --------------------------------------------------- // This notification is sent when a balloon is connected to a renderer |