diff options
author | pauljensen@chromium.org <pauljensen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-15 01:00:12 +0000 |
---|---|---|
committer | pauljensen@chromium.org <pauljensen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-15 01:00:12 +0000 |
commit | 84f05434c6ced947048613c671d29d1ee7bc43c0 (patch) | |
tree | ac3d6016c1fa95277127afe26c8cef47fd4aac15 /net/url_request/url_request_context.cc | |
parent | 6e3c0bd0ee38e411f1659903d6f3bacda0c277e9 (diff) | |
download | chromium_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.cc | 5 |
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(); |