// Copyright 2012 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_OAUTH2_ACCESS_TOKEN_CONSUMER_H_ #define GOOGLE_APIS_GAIA_OAUTH2_ACCESS_TOKEN_CONSUMER_H_ #include <string> #include "base/component_export.h" #include "base/time/time.h" class GoogleServiceAuthError; // An interface that defines the callbacks for consumers to which // OAuth2AccessTokenFetcher can return results. class COMPONENT_EXPORT(GOOGLE_APIS) OAuth2AccessTokenConsumer { … }; #endif // GOOGLE_APIS_GAIA_OAUTH2_ACCESS_TOKEN_CONSUMER_H_