| // 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 "net/base/net_export.h" |
| #include "net/base/request_priority.h" |
| #include "starboard/types.h" |
| // Returns a Value containing NetLog parameters for constructing a URLRequest. |
| NET_EXPORT std::unique_ptr<base::Value> NetLogURLRequestConstructorCallback( |
| RequestPriority priority, |
| NetLogCaptureMode /* capture_mode */); |
| // Returns a Value containing NetLog parameters for starting a URLRequest. |
| NET_EXPORT std::unique_ptr<base::Value> NetLogURLRequestStartCallback( |
| const std::string* method, |
| NetLogCaptureMode /* capture_mode */); |
| #endif // NET_URL_REQUEST_URL_REQUEST_NETLOG_PARAMS_H_ |