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

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

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
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 98c73816256cc824b1992addcb05109e6a225c3c..42146377687b5118d30d48f48324dee9bf61da3d 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 SyncError& error) {
+ const csync::SyncError& error) {
last_start_result_ = result;
last_start_error_ = error;
}
void OnLoadFinished(syncable::ModelType type,
- SyncError error) {
+ csync::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_;
- SyncError last_start_error_;
+ csync::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