chromium/content/browser/push_messaging/push_messaging_context.cc

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "content/browser/push_messaging/push_messaging_context.h"

#include "content/browser/service_worker/service_worker_context_wrapper.h"
#include "content/public/browser/browser_context.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/push_messaging_service.h"
#include "url/gurl.h"

namespace content {

PushMessagingContext::PushMessagingContext(
    BrowserContext* browser_context,
    const scoped_refptr<ServiceWorkerContextWrapper>& service_worker_context)
    :{}

PushMessagingContext::~PushMessagingContext() {}

void PushMessagingContext::OnRegistrationDeleted(int64_t registration_id,
                                                 const GURL& pattern,
                                                 const blink::StorageKey& key) {}

void PushMessagingContext::OnStorageWiped() {}

}  // namespace content