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

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

Issue 10662035: [Sync] Put everything in sync/api into csync namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix 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
« no previous file with comments | « chrome/browser/sync/backend_migrator_unittest.cc ('k') | chrome/browser/sync/failed_datatypes_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 565fb0cb167249bbed26eea520d918a97d27560c..85c29bb783958af314c1a96ee2c7d42a739d456b 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<SyncError>& errors,
+ const std::list<csync::SyncError>& errors,
FailureType failure_type);
// Called when the user has chosen a new set of datatypes to sync. We clear
@@ -47,10 +47,10 @@ class FailedDatatypesHandler {
private:
// List of dataypes that failed at startup.
- std::list<SyncError> startup_errors_;
+ std::list<csync::SyncError> startup_errors_;
// List of datatypes that failed at runtime.
- std::list<SyncError> runtime_errors_;
+ std::list<csync::SyncError> runtime_errors_;
ProfileSyncService* service_;
« no previous file with comments | « chrome/browser/sync/backend_migrator_unittest.cc ('k') | chrome/browser/sync/failed_datatypes_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698