// Copyright 2016 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_OFFLINE_PAGES_CORE_BACKGROUND_REQUEST_QUEUE_RESULTS_H_ #define COMPONENTS_OFFLINE_PAGES_CORE_BACKGROUND_REQUEST_QUEUE_RESULTS_H_ #include "components/offline_pages/core/background/save_page_request.h" #include "components/offline_pages/core/offline_store_types.h" namespace offline_pages { // Extracted from RequestQueue so that we can build types that use these results // that RequestQueue depends on (for example, the PickRequestTask). UpdateRequestsResult; enum class GetRequestsResult { … }; enum class AddRequestResult { … }; // GENERATED_JAVA_ENUM_PACKAGE:org.chromium.components.offlinepages.background enum class UpdateRequestResult { … }; } // namespace offline_pages #endif // COMPONENTS_OFFLINE_PAGES_CORE_BACKGROUND_REQUEST_QUEUE_RESULTS_H_