diff options
author | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-27 22:28:54 +0000 |
---|---|---|
committer | darin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-27 22:28:54 +0000 |
commit | 6f681a41c70030593dc14640920d8447ef9389f2 (patch) | |
tree | da9b0bb6552dc93ba1c1ab59a47588e5bb9196e9 /webkit/glue/webkit_glue.h | |
parent | b06878082f5dd7a9e289c0363e2aa9331a154fdb (diff) | |
download | chromium_src-6f681a41c70030593dc14640920d8447ef9389f2.zip chromium_src-6f681a41c70030593dc14640920d8447ef9389f2.tar.gz chromium_src-6f681a41c70030593dc14640920d8447ef9389f2.tar.bz2 |
Add support for UA spoofing, and spoof Safari's UA string when loading URLs
from *.mail.live.com (to fix hotmail).
BUG=4111
R=wtc
Review URL: http://codereview.chromium.org/19025
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8764 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webkit_glue.h')
-rw-r--r-- | webkit/glue/webkit_glue.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/webkit/glue/webkit_glue.h b/webkit/glue/webkit_glue.h index 50cd2c4..a3c4d2c 100644 --- a/webkit/glue/webkit_glue.h +++ b/webkit/glue/webkit_glue.h @@ -105,9 +105,10 @@ std::string GetWebKitVersion(); // inconsistent behavior. void SetUserAgent(const std::string& new_user_agent); -// Returns the user agent, which is usually the default user agent but may be -// overriden by a call to SetUserAgent() (which should be done at startup). -const std::string& GetUserAgent(); +// Returns the user agent to use for the given URL, which is usually the +// default user agent but may be overriden by a call to SetUserAgent() (which +// should be done at startup). +const std::string& GetUserAgent(const GURL& url); // Creates serialized state for the specified URL. This is a variant of // HistoryItemToString (in glue_serialize) that is used during session restore |