summaryrefslogtreecommitdiffstats
path: root/webkit/glue/weburlrequest_impl.h
diff options
context:
space:
mode:
authordarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-25 01:13:32 +0000
committerdarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-25 01:13:32 +0000
commit8e3c1a7ce2fb52858b6908cdd5bd5ddf547fd386 (patch)
tree1e8f8c007d25467f5f57e5f1f31174214dce96b4 /webkit/glue/weburlrequest_impl.h
parentf86a07024080cd1b000105bce34ce45b2bd5159b (diff)
downloadchromium_src-8e3c1a7ce2fb52858b6908cdd5bd5ddf547fd386.zip
chromium_src-8e3c1a7ce2fb52858b6908cdd5bd5ddf547fd386.tar.gz
chromium_src-8e3c1a7ce2fb52858b6908cdd5bd5ddf547fd386.tar.bz2
Fixes the WebRequest API to consistently use std::string instead of
std::wstring for HTTP header fields The HTTP specification guarantees that all fields in the header will be ASCII and thus fit fine in a std::string. The GetHttpHeaders/SetHttpHeaders interfaces use std::string values for HTTP headers. This patch fixes GetHttpMethod(), SetHttpMethod(), GetHttpHeaderValue() and SetHttpHeaderValue() and callers to use std::string as well. Patch by James Robinson <jamesr@google.com> R=darin Review URL: http://codereview.chromium.org/12412 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5955 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/weburlrequest_impl.h')
-rw-r--r--webkit/glue/weburlrequest_impl.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/webkit/glue/weburlrequest_impl.h b/webkit/glue/weburlrequest_impl.h
index c7fd5ef..68cb470 100644
--- a/webkit/glue/weburlrequest_impl.h
+++ b/webkit/glue/weburlrequest_impl.h
@@ -32,11 +32,11 @@ class WebRequestImpl : public WebRequest {
virtual GURL GetMainDocumentURL() const;
virtual WebRequestCachePolicy GetCachePolicy() const;
virtual void SetCachePolicy(WebRequestCachePolicy policy);
- virtual std::wstring GetHttpMethod() const;
- virtual void SetHttpMethod(const std::wstring& method);
- virtual std::wstring GetHttpHeaderValue(const std::wstring& field) const;
- virtual void SetHttpHeaderValue(const std::wstring& field,
- const std::wstring& value);
+ virtual std::string GetHttpMethod() const;
+ virtual void SetHttpMethod(const std::string& method);
+ virtual std::string GetHttpHeaderValue(const std::string& field) const;
+ virtual void SetHttpHeaderValue(const std::string& field,
+ const std::string& value);
virtual void GetHttpHeaders(HeaderMap* headers) const;
virtual void SetHttpHeaders(const HeaderMap& headers);
virtual std::wstring GetHttpReferrer() const;