// Copyright 2017 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_DOWNLOAD_PUBLIC_BACKGROUND_SERVICE_SERVICE_CONFIG_H_ #define COMPONENTS_DOWNLOAD_PUBLIC_BACKGROUND_SERVICE_SERVICE_CONFIG_H_ #include <stdint.h> namespace base { class TimeDelta; } // namespace base namespace download { // Contains the configuration used by this DownloadService for internal download // operations. Meant to be used by Clients for any tweaking they might want to // do based on the configuration parameters. class ServiceConfig { … }; } // namespace download #endif // COMPONENTS_DOWNLOAD_PUBLIC_BACKGROUND_SERVICE_SERVICE_CONFIG_H_