// 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 COMPONENTS_DRIVE_SERVICE_DUMMY_DRIVE_SERVICE_H_ #define COMPONENTS_DRIVE_SERVICE_DUMMY_DRIVE_SERVICE_H_ #include <stdint.h> #include <memory> #include <string> #include "components/drive/service/drive_service_interface.h" #include "google_apis/common/auth_service_interface.h" namespace drive { // Dummy implementation of DriveServiceInterface. // All functions do nothing, or return place holder values like 'true'. class DummyDriveService : public DriveServiceInterface { … }; } // namespace drive #endif // COMPONENTS_DRIVE_SERVICE_DUMMY_DRIVE_SERVICE_H_