#include "google_apis/common/dummy_auth_service.h"
namespace google_apis {
DummyAuthService::DummyAuthService() { … }
void DummyAuthService::AddObserver(AuthServiceObserver* observer) { … }
void DummyAuthService::RemoveObserver(AuthServiceObserver* observer) { … }
void DummyAuthService::StartAuthentication(AuthStatusCallback callback) { … }
bool DummyAuthService::HasAccessToken() const { … }
bool DummyAuthService::HasRefreshToken() const { … }
const std::string& DummyAuthService::access_token() const { … }
void DummyAuthService::ClearAccessToken() { … }
void DummyAuthService::ClearRefreshToken() { … }
}