blob: cab1b5ce82ffdcf60df458f8672c87e72b82f697 [file] [log] [blame]
// 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_PUSH_MESSAGING_MESSAGE_FILTER_H_
#define CONTENT_BROWSER_PUSH_MESSAGING_MESSAGE_FILTER_H_
#include <string>
#include "base/memory/ref_counted.h"
#include "base/memory/weak_ptr.h"
#include "content/public/browser/browser_message_filter.h"
#include "content/public/common/push_messaging_status.h"
#include "url/gurl.h"
namespace content {
class PushMessagingService;
class ServiceWorkerContextWrapper;
class PushMessagingMessageFilter : public BrowserMessageFilter {
public:
PushMessagingMessageFilter(
int render_process_id,
ServiceWorkerContextWrapper* service_worker_context);
private:
~PushMessagingMessageFilter() override;
// BrowserMessageFilter implementation.
bool OnMessageReceived(const IPC::Message& message) override;
void OnRegister(int render_frame_id,
int callbacks_id,
const std::string& sender_id,
bool user_gesture,
int service_worker_provider_id);
void DoRegister(int render_frame_id,
int callbacks_id,
const std::string& sender_id,
bool user_gesture,
const GURL& origin,
int64 service_worker_registration_id);
void DidRegister(int render_frame_id,
int callbacks_id,
const GURL& push_endpoint,
const std::string& push_registration_id,
PushRegistrationStatus status);
PushMessagingService* service();
int render_process_id_;
scoped_refptr<ServiceWorkerContextWrapper> service_worker_context_;
// Owned by the content embedder's browsing context.
PushMessagingService* service_;
base::WeakPtrFactory<PushMessagingMessageFilter> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(PushMessagingMessageFilter);
};
} // namespace content
#endif // CONTENT_BROWSER_PUSH_MESSAGING_MESSAGE_FILTER_H_