Index: components/policy/core/common/cloud/user_info_fetcher_unittest.cc |
diff --git a/components/policy/core/common/cloud/user_info_fetcher_unittest.cc b/components/policy/core/common/cloud/user_info_fetcher_unittest.cc |
index 47a4121d800f04d08cd305a2432c4be24c5f21f7..8649427d42cd1e3bb6679f2de3ed049c81d2516d 100644 |
--- a/components/policy/core/common/cloud/user_info_fetcher_unittest.cc |
+++ b/components/policy/core/common/cloud/user_info_fetcher_unittest.cc |
@@ -29,7 +29,7 @@ class MockUserInfoFetcherDelegate : public UserInfoFetcher::Delegate { |
~MockUserInfoFetcherDelegate() {} |
MOCK_METHOD1(OnGetUserInfoFailure, |
void(const GoogleServiceAuthError& error)); |
- MOCK_METHOD1(OnGetUserInfoSuccess, void(const DictionaryValue* result)); |
+ MOCK_METHOD1(OnGetUserInfoSuccess, void(const base::DictionaryValue* result)); |
}; |
MATCHER_P(MatchDict, expected, "matches DictionaryValue") { |
@@ -62,7 +62,7 @@ TEST_F(UserInfoFetcherTest, SuccessfulFetch) { |
// Generate what we expect our result will look like (should match |
// parsed kUserInfoResponse). |
- scoped_ptr<DictionaryValue> dict(new DictionaryValue()); |
+ scoped_ptr<base::DictionaryValue> dict(new base::DictionaryValue()); |
dict->SetString("email", "test_user@test.com"); |
dict->SetBoolean("verified_email", true); |
dict->SetString("hd", "test.com"); |