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

Unified Diff: chrome/browser/sync/glue/autofill_data_type_controller_unittest.cc

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/autofill_data_type_controller_unittest.cc
diff --git a/chrome/browser/sync/glue/autofill_data_type_controller_unittest.cc b/chrome/browser/sync/glue/autofill_data_type_controller_unittest.cc
index 42146377687b5118d30d48f48324dee9bf61da3d..652b6abdd1436df7100bc9dcdd7b4b58d679f700 100644
--- a/chrome/browser/sync/glue/autofill_data_type_controller_unittest.cc
+++ b/chrome/browser/sync/glue/autofill_data_type_controller_unittest.cc
@@ -96,13 +96,13 @@ class SyncAutofillDataTypeControllerTest : public testing::Test {
// Passed to AutofillDTC::Start().
void OnStartFinished(DataTypeController::StartResult result,
- const csync::SyncError& error) {
+ const syncer::SyncError& error) {
last_start_result_ = result;
last_start_error_ = error;
}
void OnLoadFinished(syncable::ModelType type,
- csync::SyncError error) {
+ syncer::SyncError error) {
EXPECT_FALSE(error.IsSet());
EXPECT_EQ(type, syncable::AUTOFILL);
}
@@ -131,7 +131,7 @@ class SyncAutofillDataTypeControllerTest : public testing::Test {
// Stores arguments of most recent call of OnStartFinished().
DataTypeController::StartResult last_start_result_;
- csync::SyncError last_start_error_;
+ syncer::SyncError last_start_error_;
};
// Load the WDS's database, then start the Autofill DTC. It should

Powered by Google App Engine
This is Rietveld 408576698