Index: chrome/browser/chromeos/customization_document_unittest.cc |
diff --git a/chrome/browser/chromeos/customization_document_unittest.cc b/chrome/browser/chromeos/customization_document_unittest.cc |
index ff71bb2bdc36b2236d4d1fd3962fb3bc685a4247..dbaec655721fe42a49361f92da6bdf19baf0bb6e 100644 |
--- a/chrome/browser/chromeos/customization_document_unittest.cc |
+++ b/chrome/browser/chromeos/customization_document_unittest.cc |
@@ -182,8 +182,9 @@ class MockExternalProviderVisitor |
extensions::Manifest::Location, |
int, |
bool)); |
- MOCK_METHOD5(OnExternalExtensionUpdateUrlFound, |
+ MOCK_METHOD6(OnExternalExtensionUpdateUrlFound, |
bool(const std::string&, |
+ const std::string&, |
const GURL&, |
extensions::Manifest::Location, |
int, |
@@ -306,7 +307,7 @@ TEST_F(ServicesCustomizationDocumentTest, EmptyCustomization) { |
EXPECT_CALL(visitor, OnExternalExtensionFileFound(_, _, _, _, _, _)) |
.Times(0); |
- EXPECT_CALL(visitor, OnExternalExtensionUpdateUrlFound(_, _, _, _, _)) |
+ EXPECT_CALL(visitor, OnExternalExtensionUpdateUrlFound(_, _, _, _, _, _)) |
.Times(0); |
EXPECT_CALL(visitor, OnExternalProviderReady(_)) |
.Times(1); |
@@ -344,7 +345,7 @@ TEST_F(ServicesCustomizationDocumentTest, DefaultApps) { |
EXPECT_CALL(visitor, OnExternalExtensionFileFound(_, _, _, _, _, _)) |
.Times(0); |
- EXPECT_CALL(visitor, OnExternalExtensionUpdateUrlFound(_, _, _, _, _)) |
+ EXPECT_CALL(visitor, OnExternalExtensionUpdateUrlFound(_, _, _, _, _, _)) |
.Times(0); |
EXPECT_CALL(visitor, OnExternalProviderReady(_)) |
.Times(1); |
@@ -355,7 +356,7 @@ TEST_F(ServicesCustomizationDocumentTest, DefaultApps) { |
EXPECT_CALL(visitor, OnExternalExtensionFileFound(_, _, _, _, _, _)) |
.Times(0); |
- EXPECT_CALL(visitor, OnExternalExtensionUpdateUrlFound(_, _, _, _, _)) |
+ EXPECT_CALL(visitor, OnExternalExtensionUpdateUrlFound(_, _, _, _, _, _)) |
.Times(2); |
EXPECT_CALL(visitor, OnExternalProviderReady(_)) |
.Times(1); |