Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(481)

Unified Diff: webkit/tools/test_shell/test_shell_request_context.cc

Issue 12463021: Stop sending Accept-Charset HTTP header. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync (r188089) Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sync/internal_api/public/http_bridge.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/tools/test_shell/test_shell_request_context.cc
diff --git a/webkit/tools/test_shell/test_shell_request_context.cc b/webkit/tools/test_shell/test_shell_request_context.cc
index fd07b3be4a3eac18b2298891c5b73467fd4a179e..3fdf0fd01d6fc6697954c002bbcd8bf5ceb8925d 100644
--- a/webkit/tools/test_shell/test_shell_request_context.cc
+++ b/webkit/tools/test_shell/test_shell_request_context.cc
@@ -40,13 +40,10 @@ class TestShellHttpUserAgentSettings : public net::HttpUserAgentSettings {
TestShellHttpUserAgentSettings() {}
virtual ~TestShellHttpUserAgentSettings() {}
- // hard-code A-L and A-C for test shells
+ // Hard-code Accept-Language for test shells.
virtual std::string GetAcceptLanguage() const OVERRIDE {
return "en-us,en";
}
- virtual std::string GetAcceptCharset() const OVERRIDE {
- return "iso-8859-1,*,utf-8";
- }
virtual std::string GetUserAgent(const GURL& url) const OVERRIDE {
return webkit_glue::GetUserAgent(url);
« no previous file with comments | « sync/internal_api/public/http_bridge.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698