blob: de7c27127781cc03e326e5cbb5b6feb231ae9faf (
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
|
// 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 "content/browser/background_sync/background_sync.pb.h"
#include "content/browser/background_sync/background_sync_registration_options.h"
#include "content/common/content_export.h"
namespace content {
class CONTENT_EXPORT BackgroundSyncRegistration {
public:
using RegistrationId = int64_t;
static const RegistrationId kInitialId;
bool Equals(const BackgroundSyncRegistration& other) const;
bool IsValid() const;
const BackgroundSyncRegistrationOptions* options() const { return &options_; }
BackgroundSyncRegistrationOptions* options() { return &options_; }
RegistrationId id() const { return id_; }
void set_id(RegistrationId id) { id_ = id; }
SyncState sync_state() const { return sync_state_; }
void set_sync_state(SyncState state) { sync_state_ = state; }
private:
static const RegistrationId kInvalidRegistrationId;
BackgroundSyncRegistrationOptions options_;
RegistrationId id_ = kInvalidRegistrationId;
SyncState sync_state_ = SYNC_STATE_PENDING;
};
} // namespace content
#endif // CONTENT_BROWSER_BACKGROUND_SYNC_BACKGROUND_SYNC_REGISTRATION_H_
|