summaryrefslogtreecommitdiffstats
path: root/chrome/browser/background/background_contents_service.cc
diff options
context:
space:
mode:
authorstevenjb@google.com <stevenjb@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-13 17:56:45 +0000
committerstevenjb@google.com <stevenjb@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2012-08-13 17:56:45 +0000
commite9798c1ed5c164beaf48e28012851bc6e68ba8c4 (patch)
tree8b764958b139346358ceb35d544194bc6d3ba55f /chrome/browser/background/background_contents_service.cc
parentc95e53ad27f426eeee6d2c07abc0c566b599b5ad (diff)
downloadchromium_src-e9798c1ed5c164beaf48e28012851bc6e68ba8c4.zip
chromium_src-e9798c1ed5c164beaf48e28012851bc6e68ba8c4.tar.gz
chromium_src-e9798c1ed5c164beaf48e28012851bc6e68ba8c4.tar.bz2
Correctly remove file browser notifications from Ash notification tray.
Also added replace_id to DesktopNotificationService::AddNotification so that notifications are correctly replaced/updated. BUG=135286 For minor changes to status_icons/ background/ and printing/: TBR=atwilson@chromium.org,thestig@chromium.org Review URL: https://chromiumcodereview.appspot.com/10824265 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@151305 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/background/background_contents_service.cc')
-rw-r--r--chrome/browser/background/background_contents_service.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/background/background_contents_service.cc b/chrome/browser/background/background_contents_service.cc
index 8726ebe..9ff318e 100644
--- a/chrome/browser/background/background_contents_service.cc
+++ b/chrome/browser/background/background_contents_service.cc
@@ -118,7 +118,7 @@ void ShowBalloon(const Extension* extension, Profile* profile) {
GURL icon_url(extension->GetIconURL(ExtensionIconSet::EXTENSION_ICON_SMALLISH,
ExtensionIconSet::MATCH_BIGGER));
DesktopNotificationService::AddNotification(
- extension->url(), title, message, icon_url,
+ extension->url(), title, message, icon_url, string16(),
new CrashNotificationDelegate(profile, extension), profile);
#endif
}