// 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. #ifndef GOOGLE_APIS_COMMON_DUMMY_AUTH_SERVICE_H_ #define GOOGLE_APIS_COMMON_DUMMY_AUTH_SERVICE_H_ #include "base/compiler_specific.h" #include "google_apis/common/auth_service_interface.h" namespace google_apis { // Dummy implementation of AuthServiceInterface that always return a dummy // access token. class DummyAuthService : public AuthServiceInterface { … }; } // namespace google_apis #endif // GOOGLE_APIS_COMMON_DUMMY_AUTH_SERVICE_H_