diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-17 22:46:41 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-17 22:46:41 +0000 |
commit | 4cc647dc70cbdaa49291ef5088494f991e7f8277 (patch) | |
tree | d8bc4795c226bb84504fd52048ba38aafe9a5a31 /net/url_request/url_request_netlog_params.h | |
parent | fe522afac00dfb9b736cea828df64ac713d1052a (diff) | |
download | chromium_src-4cc647dc70cbdaa49291ef5088494f991e7f8277.zip chromium_src-4cc647dc70cbdaa49291ef5088494f991e7f8277.tar.gz chromium_src-4cc647dc70cbdaa49291ef5088494f991e7f8277.tar.bz2 |
net: Add namespace net to URLRequestStartEventParameters.
BUG=64263
TEST=compiled locally and trybots
Review URL: http://codereview.chromium.org/5999002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69588 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/url_request/url_request_netlog_params.h')
-rw-r--r-- | net/url_request/url_request_netlog_params.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/net/url_request/url_request_netlog_params.h b/net/url_request/url_request_netlog_params.h index e7f5ce0..8b275b9e 100644 --- a/net/url_request/url_request_netlog_params.h +++ b/net/url_request/url_request_netlog_params.h @@ -13,13 +13,15 @@ #include "net/base/net_log.h" #include "net/base/request_priority.h" -// Holds the parameters to emit to the NetLog when starting a net::URLRequest. -class URLRequestStartEventParameters : public net::NetLog::EventParameters { +namespace net { + +// Holds the parameters to emit to the NetLog when starting a URLRequest. +class URLRequestStartEventParameters : public NetLog::EventParameters { public: URLRequestStartEventParameters(const GURL& url, const std::string& method, int load_flags, - net::RequestPriority priority); + RequestPriority priority); const GURL& url() const { return url_; @@ -35,9 +37,11 @@ class URLRequestStartEventParameters : public net::NetLog::EventParameters { const GURL url_; const std::string method_; const int load_flags_; - const net::RequestPriority priority_; + const RequestPriority priority_; DISALLOW_COPY_AND_ASSIGN(URLRequestStartEventParameters); }; +} // namespace net + #endif // NET_URL_REQUEST_URL_REQUEST_NETLOG_PARAMS_H_ |