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

Side by Side Diff: webkit/user_agent/user_agent.cc

Issue 10869073: Split user agent code out of the 'glue' target (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to trunk Created 8 years, 3 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « webkit/user_agent/user_agent.h ('k') | webkit/user_agent/user_agent_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "webkit/user_agent/user_agent.h"
6
7 #include "base/lazy_instance.h"
8 #include "base/logging.h"
9 #include "base/string_util.h"
10 #include "base/stringprintf.h"
11 #include "base/synchronization/lock.h"
12 #include "webkit/user_agent/user_agent_util.h"
13
14 namespace webkit_glue {
15
16 namespace {
17
18 class UserAgentState {
19 public:
20 UserAgentState();
21 ~UserAgentState();
22
23 void Set(const std::string& user_agent, bool overriding);
24 const std::string& Get(const GURL& url) const;
25
26 private:
27 mutable std::string user_agent_;
28 // The UA string when we're pretending to be Mac Safari or Win Firefox.
29 mutable std::string user_agent_for_spoofing_hack_;
30
31 mutable bool user_agent_requested_;
32 bool user_agent_is_overridden_;
33
34 // This object can be accessed from multiple threads, so use a lock around
35 // accesses to the data members.
36 mutable base::Lock lock_;
37 };
38
39 UserAgentState::UserAgentState()
40 : user_agent_requested_(false),
41 user_agent_is_overridden_(false) {
42 }
43
44 UserAgentState::~UserAgentState() {
45 }
46
47 void UserAgentState::Set(const std::string& user_agent, bool overriding) {
48 base::AutoLock auto_lock(lock_);
49 if (user_agent == user_agent_) {
50 // We allow the user agent to be set multiple times as long as it
51 // is set to the same value, in order to simplify unit testing
52 // given g_user_agent is a global.
53 return;
54 }
55 DCHECK(!user_agent.empty());
56 DCHECK(!user_agent_requested_) << "Setting the user agent after someone has "
57 "already requested it can result in unexpected behavior.";
58 user_agent_is_overridden_ = overriding;
59 user_agent_ = user_agent;
60 }
61
62 bool IsMicrosoftSiteThatNeedsSpoofingForSilverlight(const GURL& url) {
63 #if defined(OS_MACOSX)
64 // The landing page for updating Silverlight gives a confusing experience
65 // in browsers that Silverlight doesn't officially support; spoof as
66 // Safari to reduce the chance that users won't complete updates.
67 // Should be removed if the sniffing is removed: http://crbug.com/88211
68 if (url.host() == "www.microsoft.com" &&
69 StartsWithASCII(url.path(), "/getsilverlight", false)) {
70 return true;
71 }
72 #endif
73 return false;
74 }
75
76 bool IsYahooSiteThatNeedsSpoofingForSilverlight(const GURL& url) {
77 #if defined(OS_MACOSX) || defined(OS_WIN)
78 // The following Yahoo! JAPAN pages erroneously judge that Silverlight does
79 // not support Chromium. Until the pages are fixed, spoof the UA.
80 // http://crbug.com/104426
81 if (url.host() == "headlines.yahoo.co.jp" &&
82 StartsWithASCII(url.path(), "/videonews/", true)) {
83 return true;
84 }
85 #endif
86 #if defined(OS_MACOSX)
87 if ((url.host() == "downloads.yahoo.co.jp" &&
88 StartsWithASCII(url.path(), "/docs/silverlight/", true)) ||
89 url.host() == "gyao.yahoo.co.jp") {
90 return true;
91 }
92 #elif defined(OS_WIN)
93 if ((url.host() == "weather.yahoo.co.jp" &&
94 StartsWithASCII(url.path(), "/weather/zoomradar/", true)) ||
95 url.host() == "promotion.shopping.yahoo.co.jp" ||
96 url.host() == "pokemon.kids.yahoo.co.jp") {
97 return true;
98 }
99 #endif
100 return false;
101 }
102
103 const std::string& UserAgentState::Get(const GURL& url) const {
104 base::AutoLock auto_lock(lock_);
105 user_agent_requested_ = true;
106
107 DCHECK(!user_agent_.empty());
108
109 // Workarounds for sites that use misguided UA sniffing.
110 if (!user_agent_is_overridden_) {
111 if (IsMicrosoftSiteThatNeedsSpoofingForSilverlight(url) ||
112 IsYahooSiteThatNeedsSpoofingForSilverlight(url)) {
113 if (user_agent_for_spoofing_hack_.empty()) {
114 #if defined(OS_MACOSX)
115 user_agent_for_spoofing_hack_ =
116 BuildUserAgentFromProduct("Version/5.1.1 Safari/534.51.22");
117 #elif defined(OS_WIN)
118 // Pretend to be Firefox. Silverlight doesn't support Win Safari.
119 base::StringAppendF(
120 &user_agent_for_spoofing_hack_,
121 "Mozilla/5.0 (%s) Gecko/20100101 Firefox/8.0",
122 webkit_glue::BuildOSCpuInfo().c_str());
123 #endif
124 }
125 DCHECK(!user_agent_for_spoofing_hack_.empty());
126 return user_agent_for_spoofing_hack_;
127 }
128 }
129
130 return user_agent_;
131 }
132
133 base::LazyInstance<UserAgentState> g_user_agent = LAZY_INSTANCE_INITIALIZER;
134
135 } // namespace
136
137 void SetUserAgent(const std::string& user_agent, bool overriding) {
138 g_user_agent.Get().Set(user_agent, overriding);
139 }
140
141 const std::string& GetUserAgent(const GURL& url) {
142 return g_user_agent.Get().Get(url);
143 }
144
145 } // namespace webkit_glue
OLDNEW
« no previous file with comments | « webkit/user_agent/user_agent.h ('k') | webkit/user_agent/user_agent_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698