| Index: content/browser/notification_message_filter.h
|
| diff --git a/content/browser/notification_message_filter.h b/content/browser/notification_message_filter.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..92f7b47b38d9e7ea16b42b704aa9e53c250c7285
|
| --- /dev/null
|
| +++ b/content/browser/notification_message_filter.h
|
| @@ -0,0 +1,45 @@
|
| +// Copyright 2014 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef CONTENT_BROWSER_NOTIFICATION_MESSAGE_FILTER_H_
|
| +#define CONTENT_BROWSER_NOTIFICATION_MESSAGE_FILTER_H_
|
| +
|
| +#include "content/public/browser/browser_message_filter.h"
|
| +#include "third_party/WebKit/public/platform/WebNotificationPermission.h"
|
| +
|
| +class GURL;
|
| +
|
| +namespace content {
|
| +
|
| +class ResourceContext;
|
| +struct ShowDesktopNotificationHostMsgParams;
|
| +
|
| +class NotificationMessageFilter : public BrowserMessageFilter {
|
| + public:
|
| + NotificationMessageFilter(
|
| + int process_id,
|
| + ResourceContext* resource_context);
|
| +
|
| + // BrowserMessageFilter implementation. Called on the UI thread.
|
| + bool OnMessageReceived(const IPC::Message& message) override;
|
| + void OverrideThreadForMessage(
|
| + const IPC::Message& message, content::BrowserThread::ID* thread) override;
|
| +
|
| + protected:
|
| + ~NotificationMessageFilter() override;
|
| +
|
| + private:
|
| + void OnCheckNotificationPermission(
|
| + const GURL& origin, blink::WebNotificationPermission* permission);
|
| + void OnShowPlatformNotification(
|
| + int notification_id, const ShowDesktopNotificationHostMsgParams& params);
|
| + void OnClosePlatformNotification(int notification_id);
|
| +
|
| + int process_id_;
|
| + ResourceContext* resource_context_;
|
| +};
|
| +
|
| +} // namespace content
|
| +
|
| +#endif // CONTENT_BROWSER_NOTIFICATION_MESSAGE_FILTER_H_
|
|
|