Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(148)

Side by Side Diff: chrome/browser/sync/backup_rollback_controller.h

Issue 1354883003: Componentize chrome/browser/sync/backup_rollback_controller (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: updated Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chrome/browser/sync/backup_rollback_controller.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_SYNC_BACKUP_ROLLBACK_CONTROLLER_H_
6 #define CHROME_BROWSER_SYNC_BACKUP_ROLLBACK_CONTROLLER_H_
7
8 #include "base/callback.h"
9 #include "base/memory/weak_ptr.h"
10
11 class SigninManagerWrapper;
12
13 namespace sync_driver {
14 class SyncPrefs;
15 }
16
17 namespace browser_sync {
18
19 // BackupRollbackController takes two closures for starting backup/rollback
20 // process. It calls the closures according to user's signin status or
21 // received rollback command. Backup is not run when user signed in, even when
22 // sync is not running.
23 class BackupRollbackController {
24 public:
25 BackupRollbackController(sync_driver::SyncPrefs* sync_prefs,
26 const SigninManagerWrapper* signin,
27 base::Closure start_backup,
28 base::Closure start_rollback);
29 ~BackupRollbackController();
30
31 // Post task to run |start_backup_| if conditions are met. Return true if
32 // task is posted, false otherwise.
33 bool StartBackup();
34
35 // Post task to run |start_rollback_| if conditions are met. Return true if
36 // task is posted, false otherwise.
37 bool StartRollback();
38
39 // Update rollback preference to indicate rollback is needed.
40 void OnRollbackReceived();
41
42 // Update rollback preference to indicate rollback is finished.
43 void OnRollbackDone();
44
45 // Return true if platform supports backup and backup is enabled.
46 static bool IsBackupEnabled();
47
48 private:
49 sync_driver::SyncPrefs* sync_prefs_;
50
51 // Use SigninManagerWrapper instead of SigninManagerBase so that
52 // supervised users are treated like regular signed-in users.
53 const SigninManagerWrapper* signin_;
54
55 base::Closure start_backup_;
56 base::Closure start_rollback_;
57
58 DISALLOW_COPY_AND_ASSIGN(BackupRollbackController);
59 };
60
61 } // namespace browser_sync
62
63 #endif // CHROME_BROWSER_SYNC_BACKUP_ROLLBACK_CONTROLLER_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/sync/backup_rollback_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698