blob: 924540f65ac7fd24bcedcacf3175b64af8866749 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
|
// Copyright 2015 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_BACKGROUND_SYNC_BACKGROUND_SYNC_REGISTRATION_H_
#define CONTENT_BROWSER_BACKGROUND_SYNC_BACKGROUND_SYNC_REGISTRATION_H_
#include <stdint.h>
#include <list>
#include "base/callback.h"
#include "base/macros.h"
#include "base/memory/scoped_ptr.h"
#include "base/time/time.h"
#include "content/browser/background_sync/background_sync.pb.h"
#include "content/browser/background_sync/background_sync_registration_options.h"
#include "content/common/background_sync_service.mojom.h"
#include "content/common/content_export.h"
#include "mojo/public/cpp/bindings/type_converter.h"
namespace content {
class CONTENT_EXPORT BackgroundSyncRegistration {
public:
using RegistrationId = int64_t;
static const RegistrationId kInitialId;
BackgroundSyncRegistration() = default;
BackgroundSyncRegistration(const BackgroundSyncRegistration& other) = default;
BackgroundSyncRegistration& operator=(
const BackgroundSyncRegistration& other) = default;
~BackgroundSyncRegistration() = default;
bool Equals(const BackgroundSyncRegistration& other) const;
bool IsValid() const;
bool IsFiring() const;
const BackgroundSyncRegistrationOptions* options() const { return &options_; }
BackgroundSyncRegistrationOptions* options() { return &options_; }
RegistrationId id() const { return id_; }
void set_id(RegistrationId id) { id_ = id; }
mojom::BackgroundSyncState sync_state() const { return sync_state_; }
void set_sync_state(mojom::BackgroundSyncState state) { sync_state_ = state; }
int num_attempts() const { return num_attempts_; }
void set_num_attempts(int num_attempts) { num_attempts_ = num_attempts; }
base::Time delay_until() const { return delay_until_; }
void set_delay_until(base::Time delay_until) { delay_until_ = delay_until; }
private:
static const RegistrationId kInvalidRegistrationId;
BackgroundSyncRegistrationOptions options_;
RegistrationId id_ = kInvalidRegistrationId;
mojom::BackgroundSyncState sync_state_ = mojom::BackgroundSyncState::PENDING;
int num_attempts_ = 0;
base::Time delay_until_;
};
} // namespace content
namespace mojo {
template <>
struct CONTENT_EXPORT
TypeConverter<scoped_ptr<content::BackgroundSyncRegistration>,
content::mojom::SyncRegistrationPtr> {
static scoped_ptr<content::BackgroundSyncRegistration> Convert(
const content::mojom::SyncRegistrationPtr& input);
};
template <>
struct CONTENT_EXPORT TypeConverter<content::mojom::SyncRegistrationPtr,
content::BackgroundSyncRegistration> {
static content::mojom::SyncRegistrationPtr Convert(
const content::BackgroundSyncRegistration& input);
};
} // namespace
#endif // CONTENT_BROWSER_BACKGROUND_SYNC_BACKGROUND_SYNC_REGISTRATION_H_
|