#ifndef GOOGLE_APIS_COMMON_AUTH_SERVICE_H_
#define GOOGLE_APIS_COMMON_AUTH_SERVICE_H_
#include <string>
#include <vector>
#include "base/memory/raw_ptr.h"
#include "base/memory/ref_counted.h"
#include "base/memory/weak_ptr.h"
#include "base/observer_list.h"
#include "base/threading/thread_checker.h"
#include "google_apis/common/auth_service_interface.h"
#include "google_apis/gaia/core_account_id.h"
namespace network {
class SharedURLLoaderFactory;
}
namespace signin {
class IdentityManager;
}
namespace google_apis {
class AuthServiceObserver;
class AuthService : public AuthServiceInterface { … };
}
#endif