Index: chrome/browser/signin/fake_profile_oauth2_token_service.cc |
diff --git a/chrome/browser/signin/fake_profile_oauth2_token_service.cc b/chrome/browser/signin/fake_profile_oauth2_token_service.cc |
index 207d3557bc265a4e3cd163644033cc119990e7cc..0012bf03c4be7422680e2f3235ad445df8f534fa 100644 |
--- a/chrome/browser/signin/fake_profile_oauth2_token_service.cc |
+++ b/chrome/browser/signin/fake_profile_oauth2_token_service.cc |
@@ -141,3 +141,11 @@ void FakeProfileOAuth2TokenService::FetchOAuth2Token( |
pending_request.request = request->AsWeakPtr(); |
pending_requests_.push_back(pending_request); |
} |
+ |
+void FakeProfileOAuth2TokenService::InvalidateOAuth2Token( |
+ const std::string& account_id, |
+ const std::string& client_id, |
+ const ScopeSet& scopes, |
+ const std::string& access_token) { |
+ // Do nothing, as we don't have a cache from which to remove the token. |
+} |