Index: chrome/browser/sync/glue/bookmark_data_type_controller_unittest.cc |
diff --git a/chrome/browser/sync/glue/bookmark_data_type_controller_unittest.cc b/chrome/browser/sync/glue/bookmark_data_type_controller_unittest.cc |
index e034c3f302f26b31a1218f6edc4d851a2a846e4c..79a534850c705c900d9cf305816d4819e9ed6570 100644 |
--- a/chrome/browser/sync/glue/bookmark_data_type_controller_unittest.cc |
+++ b/chrome/browser/sync/glue/bookmark_data_type_controller_unittest.cc |
@@ -77,11 +77,11 @@ class BookmarkDataTypeControllerTest : public TestingBrowserProcessTest { |
WillRepeatedly(DoAll(SetArgumentPointee<0>(true), Return(true))); |
EXPECT_CALL(*model_associator_, AssociateModels(_)). |
WillRepeatedly(Return(true)); |
- EXPECT_CALL(service_, ActivateDataType(_, _)); |
+ EXPECT_CALL(service_, ActivateDataType(_, _, _)); |
} |
void SetStopExpectations() { |
- EXPECT_CALL(service_, DeactivateDataType(_, _)); |
+ EXPECT_CALL(service_, DeactivateDataType(_)); |
EXPECT_CALL(*model_associator_, DisassociateModels(_)); |
} |