diff options
author | dewittj@chromium.org <dewittj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-30 07:37:24 +0000 |
---|---|---|
committer | dewittj@chromium.org <dewittj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-01-30 07:37:24 +0000 |
commit | 9f7f7451433f7912e18070df23c5ea4e1623af93 (patch) | |
tree | 8db42fd5d3728ed5398d055ddc28c9e5959b2001 /chrome/browser/notifications/notification.h | |
parent | ccc08dc2189aba7fc4a0eb42e122bc65d100d69a (diff) | |
download | chromium_src-9f7f7451433f7912e18070df23c5ea4e1623af93.zip chromium_src-9f7f7451433f7912e18070df23c5ea4e1623af93.tar.gz chromium_src-9f7f7451433f7912e18070df23c5ea4e1623af93.tar.bz2 |
Adds a small icon to notifications, and connects it to synced notifications.
The small icon is a 16x16 image in the bottom right of all notification
templates. Currently it is not exposed to the JS API, but instead is used
only by internal API systems (starting with synced notifications.)
BUG=284592
Review URL: https://codereview.chromium.org/149433005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@247875 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/notifications/notification.h')
-rw-r--r-- | chrome/browser/notifications/notification.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/browser/notifications/notification.h b/chrome/browser/notifications/notification.h index 1d13c40..70a0ac9 100644 --- a/chrome/browser/notifications/notification.h +++ b/chrome/browser/notifications/notification.h @@ -125,6 +125,9 @@ class Notification : public message_center::Notification { // The URL of a large image to be displayed for a a rich notification. GURL image_url_; + // The URL of a small image to be displayed for a a rich notification. + GURL small_image_url_; + // The user-supplied replace ID for the notification. base::string16 replace_id_; |