blob: d835e67d4cbff765c08080df4cf5e710c6c5366d (
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
|
// 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.
#include "content/browser/background_sync/background_sync_registration.h"
#include "base/bind.h"
#include "base/location.h"
#include "base/logging.h"
#include "base/single_thread_task_runner.h"
#include "base/thread_task_runner_handle.h"
namespace content {
const BackgroundSyncRegistration::RegistrationId
BackgroundSyncRegistration::kInvalidRegistrationId = -1;
const BackgroundSyncRegistration::RegistrationId
BackgroundSyncRegistration::kInitialId = 0;
bool BackgroundSyncRegistration::Equals(
const BackgroundSyncRegistration& other) const {
return options_.Equals(other.options_);
}
bool BackgroundSyncRegistration::IsValid() const {
return id_ != kInvalidRegistrationId;
}
bool BackgroundSyncRegistration::IsFiring() const {
switch (sync_state_) {
case mojom::BackgroundSyncState::FIRING:
case mojom::BackgroundSyncState::REREGISTERED_WHILE_FIRING:
return true;
case mojom::BackgroundSyncState::PENDING:
return false;
}
NOTREACHED();
return false;
}
} // namespace content
|