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

Unified Diff: chrome/browser/chromeos/extensions/device_local_account_external_policy_loader_unittest.cc

Issue 196663003: Introduce an extension parameter which is used to customize the extension. It's available for exter… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Modified test parameters Created 6 years, 9 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/chromeos/extensions/device_local_account_external_policy_loader_unittest.cc
diff --git a/chrome/browser/chromeos/extensions/device_local_account_external_policy_loader_unittest.cc b/chrome/browser/chromeos/extensions/device_local_account_external_policy_loader_unittest.cc
index d997ed1e7ccbcbd0c5cff187be90b03811fd0d0a..58c73528af4b0b4fda55bd01defdd2bf2dd95ea7 100644
--- a/chrome/browser/chromeos/extensions/device_local_account_external_policy_loader_unittest.cc
+++ b/chrome/browser/chromeos/extensions/device_local_account_external_policy_loader_unittest.cc
@@ -70,8 +70,9 @@ class MockExternalPolicyProviderVisitor
extensions::Manifest::Location,
int,
bool));
- MOCK_METHOD5(OnExternalExtensionUpdateUrlFound,
+ MOCK_METHOD6(OnExternalExtensionUpdateUrlFound,
bool(const std::string&,
+ const std::string&,
const GURL&,
extensions::Manifest::Location,
int,
@@ -156,7 +157,7 @@ void DeviceLocalAccountExternalPolicyLoaderTest::
Mock::VerifyAndClearExpectations(&visitor_);
EXPECT_CALL(visitor_, OnExternalExtensionFileFound(_, _, _, _, _, _))
.Times(0);
- EXPECT_CALL(visitor_, OnExternalExtensionUpdateUrlFound(_, _, _, _, _))
+ EXPECT_CALL(visitor_, OnExternalExtensionUpdateUrlFound(_, _, _, _, _, _))
.Times(0);
EXPECT_CALL(visitor_, OnExternalProviderReady(_))
.Times(0);

Powered by Google App Engine
This is Rietveld 408576698