| Index: base/win/metro.h
|
| ===================================================================
|
| --- base/win/metro.h (revision 160886)
|
| +++ base/win/metro.h (working copy)
|
| @@ -84,15 +84,19 @@
|
| // Handler function for the buttons on a metro dialog box
|
| typedef void (*MetroDialogButtonPressedHandler)();
|
|
|
| +// Handler function invoked when a metro style notification is clicked.
|
| +typedef void (*MetroNotificationClickedHandler)(const wchar_t* context);
|
| +
|
| // 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);
|
| + const char* notification_id,
|
| + MetroNotificationClickedHandler handler,
|
| + const wchar_t* handler_context);
|
|
|
| -
|
| } // namespace win
|
| } // namespace base
|
|
|
|
|