blob: a0b3d84c05fc74d8827dcb88173a4be7df5c2b2b [file] [log] [blame]
// Copyright 2019 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_PUBLIC_BROWSER_BACKGROUND_SYNC_CONTEXT_H_
#define CONTENT_PUBLIC_BROWSER_BACKGROUND_SYNC_CONTEXT_H_
#include "base/callback_forward.h"
#include "base/macros.h"
#include "base/time/time.h"
#include "build/build_config.h"
#include "third_party/blink/public/mojom/background_sync/background_sync.mojom.h"
#include "url/origin.h"
#if defined(OS_ANDROID)
#include "base/android/jni_android.h"
#include "base/android/scoped_java_ref.h"
#endif
namespace content {
class BrowserContext;
class StoragePartition;
// One instance of this exists per StoragePartition, and services multiple child
// processes/origins. It contains the context for processing Background Sync
// registrations, and delegates most of this processing to owned instances of
// other components.
class CONTENT_EXPORT BackgroundSyncContext {
public:
// Gets the soonest time delta from now, when the browser should be woken up
// to fire Background Sync events of |sync_type|, across all storage
// partitions in |browser_context|, and invokes |callback| with it.
static void GetSoonestWakeupDeltaAcrossPartitions(
blink::mojom::BackgroundSyncType sync_type,
BrowserContext* browser_context,
base::OnceCallback<void(base::TimeDelta)> callback);
#if defined(OS_ANDROID)
// Processes pending Background Sync registrations of |sync_type| for all the
// storage partitions in |browser_context|, and then runs the |j_runnable|
// when done.
static void FireBackgroundSyncEventsAcrossPartitions(
BrowserContext* browser_context,
blink::mojom::BackgroundSyncType sync_type,
const base::android::JavaParamRef<jobject>& j_runnable);
#endif
BackgroundSyncContext() = default;
// Process any pending Background Sync registrations.
// This involves firing any sync events ready to be fired, and optionally
// scheduling a job to wake up the browser when the next event needs to be
// fired.
virtual void FireBackgroundSyncEvents(
blink::mojom::BackgroundSyncType sync_type,
base::OnceClosure done_closure) = 0;
// Gets the soonest time delta from now, when the browser should be woken up
// to fire any Background Sync events. Calls |callback| with this value.
virtual void GetSoonestWakeupDelta(
blink::mojom::BackgroundSyncType sync_type,
base::Time last_browser_wakeup_for_periodic_sync,
base::OnceCallback<void(base::TimeDelta)> callback) = 0;
// Revives any suspended periodic Background Sync registrations for |origin|.
virtual void RevivePeriodicBackgroundSyncRegistrations(
url::Origin origin) = 0;
// Unregisters any periodic Background Sync registrations for |origin|.
virtual void UnregisterPeriodicSyncForOrigin(url::Origin origin) = 0;
protected:
virtual ~BackgroundSyncContext() = default;
DISALLOW_COPY_AND_ASSIGN(BackgroundSyncContext);
};
} // namespace content
#endif // CONTENT_PUBLIC_BROWSER_BACKGROUND_SYNC_CONTEXT_H_