Chromium Code Reviews

Unified Diff: net/url_request/url_request.cc

Issue 5270010: Revert 67662 - FBTF: Remove unneeded headers from base/ (part 10)... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « net/url_request/url_request.h ('k') | printing/image.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/url_request/url_request.cc
===================================================================
--- net/url_request/url_request.cc (revision 67673)
+++ net/url_request/url_request.cc (working copy)
@@ -5,7 +5,6 @@
#include "net/url_request/url_request.h"
#include "base/compiler_specific.h"
-#include "base/logging.h"
#include "base/message_loop.h"
#include "base/metrics/stats_counters.h"
#include "base/singleton.h"
@@ -589,12 +588,6 @@
return expected_content_size;
}
-void URLRequest::set_priority(net::RequestPriority priority) {
- DCHECK_GE(priority, net::HIGHEST);
- DCHECK_LT(priority, net::NUM_PRIORITIES);
- priority_ = priority;
-}
-
URLRequest::UserData* URLRequest::GetUserData(const void* key) const {
UserDataMap::const_iterator found = user_data_.find(key);
if (found != user_data_.end())
« no previous file with comments | « net/url_request/url_request.h ('k') | printing/image.h » ('j') | no next file with comments »

Powered by Google App Engine