| Index: content/shell/browser/layout_test/layout_test_notification_manager.h
|
| diff --git a/content/shell/browser/layout_test/layout_test_notification_manager.h b/content/shell/browser/layout_test/layout_test_notification_manager.h
|
| index 143138495185a17f5c252214620915fb9537423d..8856a4b754bdeb012206529c8b4ebba0a40a2ed6 100644
|
| --- a/content/shell/browser/layout_test/layout_test_notification_manager.h
|
| +++ b/content/shell/browser/layout_test/layout_test_notification_manager.h
|
| @@ -19,6 +19,7 @@
|
| namespace content {
|
|
|
| class DesktopNotificationDelegate;
|
| +struct NotificationResources;
|
| struct PlatformNotificationData;
|
|
|
| // Responsible for tracking active notifications and allowed origins for the
|
| @@ -44,16 +45,16 @@ class LayoutTestNotificationManager : public PlatformNotificationService {
|
| int render_process_id) override;
|
| void DisplayNotification(BrowserContext* browser_context,
|
| const GURL& origin,
|
| - const SkBitmap& icon,
|
| const PlatformNotificationData& notification_data,
|
| + const NotificationResources& notification_resources,
|
| scoped_ptr<DesktopNotificationDelegate> delegate,
|
| base::Closure* cancel_callback) override;
|
| void DisplayPersistentNotification(
|
| BrowserContext* browser_context,
|
| int64_t persistent_notification_id,
|
| const GURL& origin,
|
| - const SkBitmap& icon,
|
| - const PlatformNotificationData& notification_data) override;
|
| + const PlatformNotificationData& notification_data,
|
| + const NotificationResources& notification_resources) override;
|
| void ClosePersistentNotification(
|
| BrowserContext* browser_context,
|
| int64_t persistent_notification_id) override;
|
|
|