| Index: content/shell/browser/layout_test/layout_test_push_messaging_service.h
|
| diff --git a/content/shell/browser/layout_test/layout_test_push_messaging_service.h b/content/shell/browser/layout_test/layout_test_push_messaging_service.h
|
| index 5e5a7a481cb4ff43c9a1243f8d8de7b6a8d8a1e7..eb5e7e4e0c8443a8ed4aed1836c18e3583aa180f 100644
|
| --- a/content/shell/browser/layout_test/layout_test_push_messaging_service.h
|
| +++ b/content/shell/browser/layout_test/layout_test_push_messaging_service.h
|
| @@ -17,8 +17,6 @@
|
|
|
| namespace content {
|
|
|
| -struct PushSubscriptionOptions;
|
| -
|
| class LayoutTestPushMessagingService : public PushMessagingService {
|
| public:
|
| LayoutTestPushMessagingService();
|
| @@ -29,14 +27,16 @@
|
| void SubscribeFromDocument(
|
| const GURL& requesting_origin,
|
| int64_t service_worker_registration_id,
|
| + const std::string& sender_id,
|
| int renderer_id,
|
| int render_frame_id,
|
| - const PushSubscriptionOptions& options,
|
| + bool user_visible,
|
| const PushMessagingService::RegisterCallback& callback) override;
|
| void SubscribeFromWorker(
|
| const GURL& requesting_origin,
|
| int64_t service_worker_registration_id,
|
| - const PushSubscriptionOptions& options,
|
| + const std::string& sender_id,
|
| + bool user_visible,
|
| const PushMessagingService::RegisterCallback& callback) override;
|
| void GetEncryptionInfo(
|
| const GURL& origin,
|
|
|