diff options
author | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-10 00:08:42 +0000 |
---|---|---|
committer | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-10 00:08:42 +0000 |
commit | da7c6b51086d02e35f7240f619704d7f4ede7493 (patch) | |
tree | 6300b59d17e275682e492861953b24bea23eab79 /chrome/browser/ui/views/status_icons | |
parent | f58b6b6dbbec20b456b0b6f02347ff5fc5e0c2b6 (diff) | |
download | chromium_src-da7c6b51086d02e35f7240f619704d7f4ede7493.zip chromium_src-da7c6b51086d02e35f7240f619704d7f4ede7493.tar.gz chromium_src-da7c6b51086d02e35f7240f619704d7f4ede7493.tar.bz2 |
Add functionality to the Windows 8 notification display functionality to invoke a caller specified handler function
with a string parameter.
Currently the only consumer of this functionality is the download notification display code which when invoked displays
the downloaded file in the shell.
BUG=151141
R=cpu
Review URL: https://codereview.chromium.org/11096013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@160988 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/views/status_icons')
-rw-r--r-- | chrome/browser/ui/views/status_icons/status_icon_win.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/ui/views/status_icons/status_icon_win.cc b/chrome/browser/ui/views/status_icons/status_icon_win.cc index 7f0f317..d154f59 100644 --- a/chrome/browser/ui/views/status_icons/status_icon_win.cc +++ b/chrome/browser/ui/views/status_icons/status_icon_win.cc @@ -199,7 +199,7 @@ void StatusIconMetro::DisplayBalloon(const gfx::ImageSkia& icon, ::GetProcAddress(metro_module, "DisplayNotification")); DCHECK(notification); notification("", "", title.c_str(), contents.c_str(), L"", - base::IntToString(id_).c_str()); + base::IntToString(id_).c_str(), NULL, NULL); } } |