blob: 57796df459d10f3a9e87d39b6784a6e4fd67fde0 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SERVICES_NETWORK_URL_REQUEST_CONTEXT_OWNER_H_
#define SERVICES_NETWORK_URL_REQUEST_CONTEXT_OWNER_H_
#include <memory>
#include "base/component_export.h"
class PrefService;
namespace net {
class URLRequestContext;
}
namespace network {
// This owns a net::URLRequestContext and other state that's used with it.
struct COMPONENT_EXPORT(NETWORK_SERVICE) URLRequestContextOwner {
URLRequestContextOwner();
URLRequestContextOwner(
std::unique_ptr<PrefService> pref_service,
std::unique_ptr<net::URLRequestContext> url_request_context);
~URLRequestContextOwner();
URLRequestContextOwner(URLRequestContextOwner&& other);
URLRequestContextOwner& operator=(URLRequestContextOwner&& other);
// This needs to be destroyed after the URLRequestContext.
std::unique_ptr<PrefService> pref_service;
std::unique_ptr<net::URLRequestContext> url_request_context;
};
} // namespace network
#endif // SERVICES_NETWORK_URL_REQUEST_CONTEXT_OWNER_H_