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

Unified Diff: chrome/browser/sync/failed_datatypes_handler.h

Issue 10698014: [Sync] Rename csync namespace to syncer (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments Created 8 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/sync/failed_datatypes_handler.h
diff --git a/chrome/browser/sync/failed_datatypes_handler.h b/chrome/browser/sync/failed_datatypes_handler.h
index bad93116bf359ac1aa220a851587793d461b4e1b..be601363f2840e491ff15bc781a71976ce2ac512 100644
--- a/chrome/browser/sync/failed_datatypes_handler.h
+++ b/chrome/browser/sync/failed_datatypes_handler.h
@@ -29,7 +29,7 @@ class FailedDatatypesHandler {
// Called with the result of sync configuration. The types with errors
// are obtained from the |result|.
bool UpdateFailedDatatypes(
- const std::list<csync::SyncError>& errors,
+ const std::list<syncer::SyncError>& errors,
FailureType failure_type);
// Called when the user has chosen a new set of datatypes to sync. We clear
@@ -37,7 +37,7 @@ class FailedDatatypesHandler {
void OnUserChoseDatatypes();
// Returns a list of all the errors this class has recorded.
- std::vector<csync::SyncError> GetAllErrors() const;
+ std::vector<syncer::SyncError> GetAllErrors() const;
// Returns the types that are failing.
syncable::ModelTypeSet GetFailedTypes() const;
@@ -47,10 +47,10 @@ class FailedDatatypesHandler {
bool AnyFailedDatatype() const;
// List of dataypes that failed at startup.
- std::vector<csync::SyncError> startup_errors_;
+ std::vector<syncer::SyncError> startup_errors_;
// List of datatypes that failed at runtime.
- std::vector<csync::SyncError> runtime_errors_;
+ std::vector<syncer::SyncError> runtime_errors_;
ProfileSyncService* service_;
« no previous file with comments | « chrome/browser/sync/backend_unrecoverable_error_handler.cc ('k') | chrome/browser/sync/failed_datatypes_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698