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

Side by Side Diff: components/proximity_auth/cryptauth/sync_scheduler.h

Issue 1852953002: Fix a bunch of IWYU violators that don't include scoped_ptr.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: address comment Created 4 years, 8 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
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef COMPONENTS_PROXIMITY_AUTH_CRYPTAUTH_SYNC_SCHEDULER_H 5 #ifndef COMPONENTS_PROXIMITY_AUTH_CRYPTAUTH_SYNC_SCHEDULER_H
6 #define COMPONENTS_PROXIMITY_AUTH_CRYPTAUTH_SYNC_SCHEDULER_H 6 #define COMPONENTS_PROXIMITY_AUTH_CRYPTAUTH_SYNC_SCHEDULER_H
7 7
8 #include "base/macros.h" 8 #include "base/macros.h"
9 #include "base/memory/scoped_ptr.h"
9 #include "base/memory/weak_ptr.h" 10 #include "base/memory/weak_ptr.h"
10 #include "base/time/time.h" 11 #include "base/time/time.h"
11 12
12 namespace proximity_auth { 13 namespace proximity_auth {
13 14
14 // Interface for scheduling the next CryptAuth sync (e.g. enrollment or device 15 // Interface for scheduling the next CryptAuth sync (e.g. enrollment or device
15 // sync). The scheduler has two different strategies affecting when to perform 16 // sync). The scheduler has two different strategies affecting when to perform
16 // the next operation: 17 // the next operation:
17 // PERIODIC_REFRESH: The last sync was made successfully, so we can wait a 18 // PERIODIC_REFRESH: The last sync was made successfully, so we can wait a
18 // relatively long time before making another sync. 19 // relatively long time before making another sync.
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 virtual SyncState GetSyncState() const = 0; 88 virtual SyncState GetSyncState() const = 0;
88 89
89 protected: 90 protected:
90 // Called by SyncRequest instances when the sync completes. 91 // Called by SyncRequest instances when the sync completes.
91 virtual void OnSyncCompleted(bool success) = 0; 92 virtual void OnSyncCompleted(bool success) = 0;
92 }; 93 };
93 94
94 } // namespace proximity_auth 95 } // namespace proximity_auth
95 96
96 #endif // COMPONENTS_PROXIMITY_CRYPTAUTH_SYNC_SCHEDULER_H 97 #endif // COMPONENTS_PROXIMITY_CRYPTAUTH_SYNC_SCHEDULER_H
OLDNEW
« no previous file with comments | « components/password_manager/core/browser/password_store_consumer.h ('k') | components/scheduler/base/task_queue_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698