blob: 97924b94f27a63291778606f80911eeb5f1fc126 (
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
|
// 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 CHROME_BROWSER_BACKGROUND_SYNC_BACKGROUND_SYNC_CONTROLLER_IMPL_H_
#define CHROME_BROWSER_BACKGROUND_SYNC_BACKGROUND_SYNC_CONTROLLER_IMPL_H_
#include "content/public/browser/background_sync_controller.h"
#include <stdint.h>
#include "base/macros.h"
#include "components/keyed_service/core/keyed_service.h"
#include "content/public/browser/browser_thread.h"
namespace content {
struct BackgroundSyncParameters;
}
namespace rappor {
class RapporService;
}
class Profile;
class BackgroundSyncControllerImpl : public content::BackgroundSyncController,
public KeyedService {
public:
static const char kFieldTrialName[];
static const char kDisabledParameterName[];
static const char kMaxAttemptsParameterName[];
static const char kInitialRetryParameterName[];
static const char kRetryDelayFactorParameterName[];
static const char kMinSyncRecoveryTimeName[];
static const char kMaxSyncEventDurationName[];
explicit BackgroundSyncControllerImpl(Profile* profile);
~BackgroundSyncControllerImpl() override;
// content::BackgroundSyncController overrides.
void GetParameterOverrides(
content::BackgroundSyncParameters* parameters) const override;
void NotifyBackgroundSyncRegistered(const GURL& origin) override;
void RunInBackground(bool enabled, int64_t min_ms) override;
protected:
// Virtual for testing.
virtual rappor::RapporService* GetRapporService();
private:
Profile* profile_; // This object is owned by profile_.
DISALLOW_COPY_AND_ASSIGN(BackgroundSyncControllerImpl);
};
#endif // CHROME_BROWSER_BACKGROUND_SYNC_BACKGROUND_SYNC_CONTROLLER_IMPL_H_
|