chromium/google_apis/common/dummy_auth_service.cc

// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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() {}

}  // namespace google_apis