Index: chrome/browser/extensions/api/identity/identity_get_auth_token_function.cc |
diff --git a/chrome/browser/extensions/api/identity/identity_get_auth_token_function.cc b/chrome/browser/extensions/api/identity/identity_get_auth_token_function.cc |
index 6f52b003546879494c59cbb3e3ce0336aded4e85..3ebce8aeba83239e763c610f3e598fcb7dd9a70f 100644 |
--- a/chrome/browser/extensions/api/identity/identity_get_auth_token_function.cc |
+++ b/chrome/browser/extensions/api/identity/identity_get_auth_token_function.cc |
@@ -186,7 +186,7 @@ void IdentityGetAuthTokenFunction::CompleteAsyncRun(bool success) { |
void IdentityGetAuthTokenFunction::CompleteFunctionWithResult( |
const std::string& access_token) { |
- SetResult(base::MakeUnique<base::StringValue>(access_token)); |
+ SetResult(base::MakeUnique<base::Value>(access_token)); |
CompleteAsyncRun(true); |
} |