| Index: net/url_request/url_request_netlog_params.h
|
| ===================================================================
|
| --- net/url_request/url_request_netlog_params.h (revision 52046)
|
| +++ net/url_request/url_request_netlog_params.h (working copy)
|
| @@ -7,15 +7,18 @@
|
|
|
| #include <string>
|
|
|
| +#include "base/basictypes.h"
|
| #include "googleurl/src/gurl.h"
|
| #include "net/base/net_log.h"
|
| +#include "net/base/request_priority.h"
|
|
|
| // Holds the parameters to emit to the NetLog when starting a URLRequest.
|
| class URLRequestStartEventParameters : public net::NetLog::EventParameters {
|
| public:
|
| URLRequestStartEventParameters(const GURL& url,
|
| const std::string& method,
|
| - int load_flags);
|
| + int load_flags,
|
| + net::RequestPriority priority);
|
|
|
| const GURL& url() const {
|
| return url_;
|
| @@ -27,6 +30,9 @@
|
| const GURL url_;
|
| const std::string method_;
|
| const int load_flags_;
|
| + const net::RequestPriority priority_;
|
| +
|
| + DISALLOW_COPY_AND_ASSIGN(URLRequestStartEventParameters);
|
| };
|
|
|
| #endif // NET_URL_REQUEST_URL_REQUEST_NETLOG_PARAMS_H_
|
|
|