diff options
author | Kristian Monsen <kristianm@google.com> | 2010-09-15 19:54:19 +0100 |
---|---|---|
committer | Kristian Monsen <kristianm@google.com> | 2010-09-15 19:56:27 +0100 |
commit | e31b89d54638e41f869b2c21a4f73501588ece78 (patch) | |
tree | b25442fcbc62c4537a374bdf41bff281b23f18a0 | |
parent | 7f2a883e6aacf727dc60d0eb38622ca99826a75f (diff) | |
download | external_webkit-e31b89d54638e41f869b2c21a4f73501588ece78.zip external_webkit-e31b89d54638e41f869b2c21a4f73501588ece78.tar.gz external_webkit-e31b89d54638e41f869b2c21a4f73501588ece78.tar.bz2 |
Remove alt http from chrome stack user agent
Fix for bug 3004055
Change-Id: I6e313880c7f8bb7033f302717209befba34819ad
-rw-r--r-- | WebKit/android/WebCoreSupport/WebRequestContext.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/WebKit/android/WebCoreSupport/WebRequestContext.cpp b/WebKit/android/WebCoreSupport/WebRequestContext.cpp index 0dda816..704f8e8 100644 --- a/WebKit/android/WebCoreSupport/WebRequestContext.cpp +++ b/WebKit/android/WebCoreSupport/WebRequestContext.cpp @@ -72,7 +72,6 @@ void WebRequestContext::SetUserAgent(WTF::String string) { AutoLock aLock(userAgentLock); userAgent = string.utf8().data(); - userAgent.append(" alternate http"); } const std::string& WebRequestContext::GetUserAgent(const GURL& url) const |