blob: 5990f3d64a8cb6da7f6a9e48007fd918a3429acd [file] [log] [blame]
// Copyright (c) 2012 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 NET_URL_REQUEST_URL_REQUEST_NETLOG_PARAMS_H_
#define NET_URL_REQUEST_URL_REQUEST_NETLOG_PARAMS_H_
#include <stdint.h>
#include <memory>
#include <string>
#include "base/optional.h"
#include "net/base/isolation_info.h"
#include "net/base/net_export.h"
#include "net/base/privacy_mode.h"
#include "net/base/request_priority.h"
#include "net/log/net_log_capture_mode.h"
#include "net/traffic_annotation/network_traffic_annotation.h"
class GURL;
namespace base {
class Value;
}
namespace url {
class Origin;
}
namespace net {
class SiteForCookies;
// Returns a Value containing NetLog parameters for constructing a URLRequest.
NET_EXPORT base::Value NetLogURLRequestConstructorParams(
const GURL& url,
RequestPriority priority,
NetworkTrafficAnnotationTag traffic_annotation);
// Returns a Value containing NetLog parameters for starting a URLRequest.
NET_EXPORT base::Value NetLogURLRequestStartParams(
const GURL& url,
const std::string& method,
int load_flags,
PrivacyMode privacy_mode,
const IsolationInfo& isolation_info,
const SiteForCookies& site_for_cookies,
const base::Optional<url::Origin>& initiator,
int64_t upload_id);
} // namespace net
#endif // NET_URL_REQUEST_URL_REQUEST_NETLOG_PARAMS_H_