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

Unified Diff: chrome/browser/sync/glue/password_model_worker.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/glue/password_model_worker.h
diff --git a/chrome/browser/sync/glue/password_model_worker.h b/chrome/browser/sync/glue/password_model_worker.h
index a9fcbb94925a3b0806bedc68262e338aa9cf6c84..ab95b27b836b74178987fffe8219dcd84aba7f96 100644
--- a/chrome/browser/sync/glue/password_model_worker.h
+++ b/chrome/browser/sync/glue/password_model_worker.h
@@ -21,26 +21,26 @@ class WaitableEvent;
namespace browser_sync {
-// A csync::ModelSafeWorker for password models that accepts requests
+// A syncer::ModelSafeWorker for password models that accepts requests
// from the syncapi that need to be fulfilled on the password thread,
// which is the DB thread on Linux and Windows.
-class PasswordModelWorker : public csync::ModelSafeWorker {
+class PasswordModelWorker : public syncer::ModelSafeWorker {
public:
explicit PasswordModelWorker(
const scoped_refptr<PasswordStore>& password_store);
- // csync::ModelSafeWorker implementation. Called on syncapi SyncerThread.
- virtual csync::SyncerError DoWorkAndWaitUntilDone(
- const csync::WorkCallback& work) OVERRIDE;
- virtual csync::ModelSafeGroup GetModelSafeGroup() OVERRIDE;
+ // syncer::ModelSafeWorker implementation. Called on syncapi SyncerThread.
+ virtual syncer::SyncerError DoWorkAndWaitUntilDone(
+ const syncer::WorkCallback& work) OVERRIDE;
+ virtual syncer::ModelSafeGroup GetModelSafeGroup() OVERRIDE;
private:
virtual ~PasswordModelWorker();
void CallDoWorkAndSignalTask(
- const csync::WorkCallback& work,
+ const syncer::WorkCallback& work,
base::WaitableEvent* done,
- csync::SyncerError* error);
+ syncer::SyncerError* error);
scoped_refptr<PasswordStore> password_store_;
DISALLOW_COPY_AND_ASSIGN(PasswordModelWorker);
« no previous file with comments | « chrome/browser/sync/glue/password_model_associator.cc ('k') | chrome/browser/sync/glue/password_model_worker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698