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

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

Issue 2923006: Handle birthday errors by disabling sync and deleting sync data. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 5 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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_PROFILE_SYNC_SERVICE_H_ 5 #ifndef CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_
6 #define CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_ 6 #define CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_
7 7
8 #include <string> 8 #include <string>
9 #include <map> 9 #include <map>
10 10
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 virtual void DisableForUser(); 149 virtual void DisableForUser();
150 150
151 // Whether sync is enabled by user or not. 151 // Whether sync is enabled by user or not.
152 virtual bool HasSyncSetupCompleted() const; 152 virtual bool HasSyncSetupCompleted() const;
153 void SetSyncSetupCompleted(); 153 void SetSyncSetupCompleted();
154 154
155 // SyncFrontend implementation. 155 // SyncFrontend implementation.
156 virtual void OnBackendInitialized(); 156 virtual void OnBackendInitialized();
157 virtual void OnSyncCycleCompleted(); 157 virtual void OnSyncCycleCompleted();
158 virtual void OnAuthError(); 158 virtual void OnAuthError();
159 virtual void OnStopSyncingPermanently();
159 160
160 // Called when a user enters credentials through UI. 161 // Called when a user enters credentials through UI.
161 virtual void OnUserSubmittedAuth(const std::string& username, 162 virtual void OnUserSubmittedAuth(const std::string& username,
162 const std::string& password, 163 const std::string& password,
163 const std::string& captcha); 164 const std::string& captcha);
164 165
165 // Called when a user chooses which data types to sync as part of the sync 166 // Called when a user chooses which data types to sync as part of the sync
166 // setup wizard. |sync_everything| represents whether they chose the 167 // setup wizard. |sync_everything| represents whether they chose the
167 // "keep everything synced" option; if true, |chosen_types| will be ignored 168 // "keep everything synced" option; if true, |chosen_types| will be ignored
168 // and all data types will be synced. |sync_everything| means "sync all 169 // and all data types will be synced. |sync_everything| means "sync all
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
442 443
443 NotificationRegistrar registrar_; 444 NotificationRegistrar registrar_;
444 445
445 ScopedRunnableMethodFactory<ProfileSyncService> 446 ScopedRunnableMethodFactory<ProfileSyncService>
446 scoped_runnable_method_factory_; 447 scoped_runnable_method_factory_;
447 448
448 DISALLOW_COPY_AND_ASSIGN(ProfileSyncService); 449 DISALLOW_COPY_AND_ASSIGN(ProfileSyncService);
449 }; 450 };
450 451
451 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_ 452 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_
OLDNEW
« no previous file with comments | « chrome/browser/sync/glue/sync_backend_host.cc ('k') | chrome/browser/sync/profile_sync_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698