diff options
author | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-03 23:11:20 +0000 |
---|---|---|
committer | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-08-03 23:11:20 +0000 |
commit | 0057b90eddee50b72b73c2d4b341823083ce1b58 (patch) | |
tree | 0dcb98b5ea14a7e97660b9830efe4a6845e4a76b /base | |
parent | e737c49ac18e5434b1647d9461b28739d70e844b (diff) | |
download | chromium_src-0057b90eddee50b72b73c2d4b341823083ce1b58.zip chromium_src-0057b90eddee50b72b73c2d4b341823083ce1b58.tar.gz chromium_src-0057b90eddee50b72b73c2d4b341823083ce1b58.tar.bz2 |
Add the prototype for the function to display metro style notifications.
BUG=133109
R=robertshield
Review URL: https://chromiumcodereview.appspot.com/10823170
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@149962 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r-- | base/win/metro.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/base/win/metro.h b/base/win/metro.h index 50a26ba..6540c59 100644 --- a/base/win/metro.h +++ b/base/win/metro.h @@ -70,6 +70,15 @@ BASE_EXPORT bool IsParentalControlActivityLoggingOn(); // Handler function for the buttons on a metro dialog box typedef void (*MetroDialogButtonPressedHandler)(); +// Function to display metro style notifications. +typedef void (*MetroNotification)(const char* origin_url, + const char* icon_url, + const wchar_t* title, + const wchar_t* body, + const wchar_t* display_source, + const char* notification_id); + + } // namespace win } // namespace base |