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

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: Fix comment 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
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..51ee1eb7c24994c962e76d6f17f6a9cd54c46579 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
mmenke 2013/03/08 15:37:49 nit: Accept-Language
pauljensen 2013/03/09 19:21:15 Done, and I added some capitalization and punctuat
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);

Powered by Google App Engine
This is Rietveld 408576698