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

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

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master Created 6 years, 2 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 (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 CHROME_BROWSER_SYNC_SYNC_STARTUP_TRACKER_H_ 5 #ifndef CHROME_BROWSER_SYNC_SYNC_STARTUP_TRACKER_H_
6 #define CHROME_BROWSER_SYNC_SYNC_STARTUP_TRACKER_H_ 6 #define CHROME_BROWSER_SYNC_SYNC_STARTUP_TRACKER_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "chrome/browser/sync/profile_sync_service_observer.h" 10 #include "chrome/browser/sync/profile_sync_service_observer.h"
(...skipping 28 matching lines...) Expand all
39 SYNC_STARTUP_ERROR, 39 SYNC_STARTUP_ERROR,
40 // Sync startup has completed (i.e. ProfileSyncService::SyncActive() 40 // Sync startup has completed (i.e. ProfileSyncService::SyncActive()
41 // returns true). 41 // returns true).
42 SYNC_STARTUP_COMPLETE 42 SYNC_STARTUP_COMPLETE
43 }; 43 };
44 44
45 // Returns the current state of the sync service. 45 // Returns the current state of the sync service.
46 static SyncServiceState GetSyncServiceState(Profile* profile); 46 static SyncServiceState GetSyncServiceState(Profile* profile);
47 47
48 // ProfileSyncServiceObserver implementation. 48 // ProfileSyncServiceObserver implementation.
49 virtual void OnStateChanged() OVERRIDE; 49 virtual void OnStateChanged() override;
50 50
51 private: 51 private:
52 // Checks the current service state and notifies |observer_| if the state 52 // Checks the current service state and notifies |observer_| if the state
53 // has changed. Note that it is expected that the observer will free this 53 // has changed. Note that it is expected that the observer will free this
54 // object, so callers should not reference this object after making this call. 54 // object, so callers should not reference this object after making this call.
55 void CheckServiceState(); 55 void CheckServiceState();
56 56
57 // Profile whose ProfileSyncService we should track. 57 // Profile whose ProfileSyncService we should track.
58 Profile* profile_; 58 Profile* profile_;
59 59
60 // Weak pointer to the observer to notify. 60 // Weak pointer to the observer to notify.
61 Observer* observer_; 61 Observer* observer_;
62 62
63 DISALLOW_COPY_AND_ASSIGN(SyncStartupTracker); 63 DISALLOW_COPY_AND_ASSIGN(SyncStartupTracker);
64 }; 64 };
65 65
66 #endif // CHROME_BROWSER_SYNC_SYNC_STARTUP_TRACKER_H_ 66 #endif // CHROME_BROWSER_SYNC_SYNC_STARTUP_TRACKER_H_
OLDNEW
« no previous file with comments | « chrome/browser/sync/sync_policy_handler.h ('k') | chrome/browser/sync/sync_startup_tracker_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698