// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef GOOGLE_APIS_GAIA_FAKE_OAUTH2_ACCESS_TOKEN_MANAGER_H_ #define GOOGLE_APIS_GAIA_FAKE_OAUTH2_ACCESS_TOKEN_MANAGER_H_ #include "base/compiler_specific.h" #include "base/memory/weak_ptr.h" #include "google_apis/gaia/oauth2_access_token_manager.h" namespace network { class SharedURLLoaderFactory; } class GoogleServiceAuthError; // Helper class to simplify writing unittests that depend on an instance of // OAuth2AccessTokenManager. class FakeOAuth2AccessTokenManager : public OAuth2AccessTokenManager { … }; #endif // GOOGLE_APIS_GAIA_FAKE_OAUTH2_ACCESS_TOKEN_MANAGER_H_