summaryrefslogtreecommitdiffstats
path: root/net/url_request/url_request_context.cc
diff options
context:
space:
mode:
authorpauljensen@chromium.org <pauljensen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-03-15 01:00:12 +0000
committerpauljensen@chromium.org <pauljensen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-03-15 01:00:12 +0000
commit84f05434c6ced947048613c671d29d1ee7bc43c0 (patch)
treeac3d6016c1fa95277127afe26c8cef47fd4aac15 /net/url_request/url_request_context.cc
parent6e3c0bd0ee38e411f1659903d6f3bacda0c277e9 (diff)
downloadchromium_src-84f05434c6ced947048613c671d29d1ee7bc43c0.zip
chromium_src-84f05434c6ced947048613c671d29d1ee7bc43c0.tar.gz
chromium_src-84f05434c6ced947048613c671d29d1ee7bc43c0.tar.bz2
Stop sending Accept-Charset HTTP header as its not relevant anymore. Remove it from HttpUserAgentSettings as well as this is no longer needed.
BUG=112804 Review URL: https://chromiumcodereview.appspot.com/12463021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@188237 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/url_request/url_request_context.cc')
-rw-r--r--net/url_request/url_request_context.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/net/url_request/url_request_context.cc b/net/url_request/url_request_context.cc
index 94d7f22..e88750b 100644
--- a/net/url_request/url_request_context.cc
+++ b/net/url_request/url_request_context.cc
@@ -85,11 +85,6 @@ void URLRequestContext::set_cookie_store(CookieStore* cookie_store) {
cookie_store_ = cookie_store;
}
-std::string URLRequestContext::GetAcceptCharset() const {
- return http_user_agent_settings_ ?
- http_user_agent_settings_->GetAcceptCharset() : EmptyString();
-}
-
std::string URLRequestContext::GetAcceptLanguage() const {
return http_user_agent_settings_ ?
http_user_agent_settings_->GetAcceptLanguage() : EmptyString();