chromium/content/browser/background_sync/background_sync_registration_helper.h

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

#ifndef CONTENT_BROWSER_BACKGROUND_SYNC_BACKGROUND_SYNC_REGISTRATION_HELPER_H_
#define CONTENT_BROWSER_BACKGROUND_SYNC_BACKGROUND_SYNC_REGISTRATION_HELPER_H_

#include <vector>

#include "base/functional/callback.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "content/browser/background_sync/background_sync_status.h"
#include "content/public/browser/background_sync_registration.h"
#include "third_party/blink/public/mojom/background_sync/background_sync.mojom.h"

namespace url {
class Origin;
}  // namespace url

namespace content {

class BackgroundSyncContextImpl;
class RenderProcessHost;

// Used by OneShotBackgroundSyncService and PeriodicBackgroundSyncService to
// create and get BackgroundSync registrations.
class BackgroundSyncRegistrationHelper {};

}  // namespace content

#endif  // CONTENT_BROWSER_BACKGROUND_SYNC_BACKGROUND_SYNC_REGISTRATION_HELPER_H_