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

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

Issue 10696087: [Sync] Move ModelType and related classes to 'syncer' namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sort headers, update copyrights 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/non_frontend_data_type_controller_unittest.cc
diff --git a/chrome/browser/sync/glue/non_frontend_data_type_controller_unittest.cc b/chrome/browser/sync/glue/non_frontend_data_type_controller_unittest.cc
index 39c21dd28ff9d2d17c23a135b721e2c149c0f9d6..7f0a37de7c867ce33d232de22d1dd3064ea49ca8 100644
--- a/chrome/browser/sync/glue/non_frontend_data_type_controller_unittest.cc
+++ b/chrome/browser/sync/glue/non_frontend_data_type_controller_unittest.cc
@@ -61,7 +61,7 @@ class NonFrontendDataTypeControllerFake : public NonFrontendDataTypeController {
sync_service),
mock_(mock) {}
- virtual syncable::ModelType type() const { return syncable::BOOKMARKS; }
+ virtual syncer::ModelType type() const { return syncer::BOOKMARKS; }
virtual syncer::ModelSafeGroup model_safe_group() const {
return syncer::GROUP_DB;
}
@@ -250,7 +250,7 @@ TEST_F(SyncNonFrontendDataTypeControllerTest, StartAssociationFailed) {
WillOnce(DoAll(SetArgumentPointee<0>(true), Return(true)));
EXPECT_CALL(*model_associator_, AssociateModels()).
WillOnce(
- Return(syncer::SyncError(FROM_HERE, "Error", syncable::AUTOFILL)));
+ Return(syncer::SyncError(FROM_HERE, "Error", syncer::AUTOFILL)));
EXPECT_CALL(*dtc_mock_, RecordAssociationTime(_));
SetStartFailExpectations(DataTypeController::ASSOCIATION_FAILED);
// Set up association to fail with an association failed error.

Powered by Google App Engine
This is Rietveld 408576698