Index: google_apis/gaia/google_service_auth_error.cc |
diff --git a/google_apis/gaia/google_service_auth_error.cc b/google_apis/gaia/google_service_auth_error.cc |
index fcb7c0054161345c967ff7dc0c6c955a727eb348..bb872433cf4466a5146e0e54e9137281095bbfc7 100644 |
--- a/google_apis/gaia/google_service_auth_error.cc |
+++ b/google_apis/gaia/google_service_auth_error.cc |
@@ -135,8 +135,8 @@ const std::string& GoogleServiceAuthError::error_message() const { |
return error_message_; |
} |
-DictionaryValue* GoogleServiceAuthError::ToValue() const { |
- DictionaryValue* value = new DictionaryValue(); |
+base::DictionaryValue* GoogleServiceAuthError::ToValue() const { |
+ base::DictionaryValue* value = new base::DictionaryValue(); |
std::string state_str; |
switch (state_) { |
#define STATE_CASE(x) case x: state_str = #x; break |
@@ -158,7 +158,7 @@ DictionaryValue* GoogleServiceAuthError::ToValue() const { |
} |
value->SetString("state", state_str); |
if (state_ == CAPTCHA_REQUIRED) { |
- DictionaryValue* captcha_value = new DictionaryValue(); |
+ base::DictionaryValue* captcha_value = new base::DictionaryValue(); |
value->Set("captcha", captcha_value); |
captcha_value->SetString("token", captcha_.token); |
captcha_value->SetString("audioUrl", captcha_.audio_url.spec()); |
@@ -169,7 +169,7 @@ DictionaryValue* GoogleServiceAuthError::ToValue() const { |
} else if (state_ == CONNECTION_FAILED) { |
value->SetString("networkError", net::ErrorToString(network_error_)); |
} else if (state_ == TWO_FACTOR) { |
- DictionaryValue* two_factor_value = new DictionaryValue(); |
+ base::DictionaryValue* two_factor_value = new base::DictionaryValue(); |
value->Set("two_factor", two_factor_value); |
two_factor_value->SetString("token", second_factor_.token); |
two_factor_value->SetString("promptText", second_factor_.prompt_text); |