OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 // | 4 |
5 // This file defines specific implementation of BrowserDistribution class for | 5 #include "chrome/installer/util/user_experiment.h" |
6 // Google Chrome. | |
7 | |
8 #include "chrome/installer/util/google_chrome_distribution.h" | |
9 | 6 |
10 #include <windows.h> | 7 #include <windows.h> |
11 #include <msi.h> | |
12 #include <sddl.h> | 8 #include <sddl.h> |
13 #include <wtsapi32.h> | 9 #include <wtsapi32.h> |
14 #include <vector> | 10 #include <vector> |
15 | 11 |
16 #include "base/command_line.h" | 12 #include "base/command_line.h" |
17 #include "base/files/file_path.h" | 13 #include "base/files/file_path.h" |
18 #include "base/json/json_file_value_serializer.h" | |
19 #include "base/memory/scoped_ptr.h" | |
20 #include "base/path_service.h" | |
21 #include "base/process_util.h" | 14 #include "base/process_util.h" |
22 #include "base/rand_util.h" | 15 #include "base/rand_util.h" |
23 #include "base/string_util.h" | 16 #include "base/string_util.h" |
24 #include "base/stringprintf.h" | |
25 #include "base/strings/string_number_conversions.h" | 17 #include "base/strings/string_number_conversions.h" |
26 #include "base/strings/string_split.h" | 18 #include "base/strings/string_split.h" |
27 #include "base/utf_string_conversions.h" | 19 #include "base/utf_string_conversions.h" |
28 #include "base/win/registry.h" | 20 #include "base/win/scoped_handle.h" |
29 #include "base/win/windows_version.h" | 21 #include "base/win/windows_version.h" |
30 #include "chrome/common/attrition_experiments.h" | 22 #include "chrome/common/attrition_experiments.h" |
31 #include "chrome/common/chrome_result_codes.h" | 23 #include "chrome/common/chrome_result_codes.h" |
32 #include "chrome/common/chrome_switches.h" | 24 #include "chrome/common/chrome_switches.h" |
33 #include "chrome/common/net/test_server_locations.h" | 25 #include "chrome/installer/util/browser_distribution.h" |
34 #include "chrome/common/pref_names.h" | |
35 #include "chrome/installer/util/channel_info.h" | |
36 #include "chrome/installer/util/google_update_constants.h" | 26 #include "chrome/installer/util/google_update_constants.h" |
37 #include "chrome/installer/util/google_update_settings.h" | 27 #include "chrome/installer/util/google_update_settings.h" |
38 #include "chrome/installer/util/helper.h" | 28 #include "chrome/installer/util/helper.h" |
39 #include "chrome/installer/util/install_util.h" | 29 #include "chrome/installer/util/install_util.h" |
40 #include "chrome/installer/util/l10n_string_util.h" | |
41 #include "chrome/installer/util/product.h" | 30 #include "chrome/installer/util/product.h" |
42 #include "chrome/installer/util/util_constants.h" | |
43 #include "chrome/installer/util/wmi.h" | |
44 #include "content/public/common/result_codes.h" | 31 #include "content/public/common/result_codes.h" |
45 | 32 |
46 #include "installer_util_strings.h" // NOLINT | |
47 | |
48 #pragma comment(lib, "wtsapi32.lib") | 33 #pragma comment(lib, "wtsapi32.lib") |
49 | 34 |
35 namespace installer { | |
36 | |
50 namespace { | 37 namespace { |
51 | 38 |
52 const wchar_t kChromeGuid[] = L"{8A69D345-D564-463c-AFF1-A69D9E530F96}"; | |
53 const wchar_t kBrowserAppId[] = L"Chrome"; | |
54 const wchar_t kCommandExecuteImplUuid[] = | |
55 L"{5C65F4B0-3651-4514-B207-D10CB699B14B}"; | |
56 | |
57 // The following strings are the possible outcomes of the toast experiment | 39 // The following strings are the possible outcomes of the toast experiment |
58 // as recorded in the |client| field. | 40 // as recorded in the |client| field. |
59 const wchar_t kToastExpControlGroup[] = L"01"; | 41 const wchar_t kToastExpControlGroup[] = L"01"; |
60 const wchar_t kToastExpCancelGroup[] = L"02"; | 42 const wchar_t kToastExpCancelGroup[] = L"02"; |
61 const wchar_t kToastExpUninstallGroup[] = L"04"; | 43 const wchar_t kToastExpUninstallGroup[] = L"04"; |
62 const wchar_t kToastExpTriesOkGroup[] = L"18"; | 44 const wchar_t kToastExpTriesOkGroup[] = L"18"; |
63 const wchar_t kToastExpTriesErrorGroup[] = L"28"; | 45 const wchar_t kToastExpTriesErrorGroup[] = L"28"; |
64 const wchar_t kToastActiveGroup[] = L"40"; | 46 const wchar_t kToastActiveGroup[] = L"40"; |
65 const wchar_t kToastUDDirFailure[] = L"40"; | 47 const wchar_t kToastUDDirFailure[] = L"40"; |
66 const wchar_t kToastExpBaseGroup[] = L"80"; | 48 const wchar_t kToastExpBaseGroup[] = L"80"; |
67 | 49 |
68 // Substitute the locale parameter in uninstall URL with whatever | 50 // Substitute the locale parameter in uninstall URL with whatever |
69 // Google Update tells us is the locale. In case we fail to find | 51 // Google Update tells us is the locale. In case we fail to find |
70 // the locale, we use US English. | 52 // the locale, we use US English. |
71 string16 LocalizeUrl(const wchar_t* url) { | 53 string16 LocalizeUrl(const wchar_t* url) { |
72 string16 language; | 54 string16 language; |
73 if (!GoogleUpdateSettings::GetLanguage(&language)) | 55 if (!GoogleUpdateSettings::GetLanguage(&language)) |
74 language = L"en-US"; // Default to US English. | 56 language = L"en-US"; // Default to US English. |
75 return ReplaceStringPlaceholders(url, language.c_str(), NULL); | 57 return ReplaceStringPlaceholders(url, language.c_str(), NULL); |
76 } | 58 } |
77 | 59 |
78 string16 GetUninstallSurveyUrl() { | |
79 const wchar_t kSurveyUrl[] = L"http://www.google.com/support/chrome/bin/" | |
80 L"request.py?hl=$1&contact_type=uninstall"; | |
81 return LocalizeUrl(kSurveyUrl); | |
82 } | |
83 | |
84 string16 GetWelcomeBackUrl() { | 60 string16 GetWelcomeBackUrl() { |
85 const wchar_t kWelcomeUrl[] = L"http://www.google.com/chrome/intl/$1/" | 61 const wchar_t kWelcomeUrl[] = L"http://www.google.com/chrome/intl/$1/" |
86 L"welcomeback-new.html"; | 62 L"welcomeback-new.html"; |
87 return LocalizeUrl(kWelcomeUrl); | 63 return LocalizeUrl(kWelcomeUrl); |
88 } | 64 } |
89 | 65 |
90 // Converts FILETIME to hours. FILETIME times are absolute times in | 66 // Converts FILETIME to hours. FILETIME times are absolute times in |
91 // 100 nanosecond units. For example 5:30 pm of June 15, 2009 is 3580464. | 67 // 100 nanosecond units. For example 5:30 pm of June 15, 2009 is 3580464. |
92 int FileTimeToHours(const FILETIME& time) { | 68 int FileTimeToHours(const FILETIME& time) { |
93 const ULONGLONG k100sNanoSecsToHours = 10000000LL * 60 * 60; | 69 const ULONGLONG k100sNanoSecsToHours = 10000000LL * 60 * 60; |
94 ULARGE_INTEGER uli = {time.dwLowDateTime, time.dwHighDateTime}; | 70 ULARGE_INTEGER uli = {time.dwLowDateTime, time.dwHighDateTime}; |
95 return static_cast<int>(uli.QuadPart / k100sNanoSecsToHours); | 71 return static_cast<int>(uli.QuadPart / k100sNanoSecsToHours); |
96 } | 72 } |
97 | 73 |
98 // Returns the directory last write time in hours since January 1, 1601. | 74 // Returns the directory last write time in hours since January 1, 1601. |
99 // Returns -1 if there was an error retrieving the directory time. | 75 // Returns -1 if there was an error retrieving the directory time. |
100 int GetDirectoryWriteTimeInHours(const wchar_t* path) { | 76 int GetDirectoryWriteTimeInHours(const wchar_t* path) { |
101 // To open a directory you need to pass FILE_FLAG_BACKUP_SEMANTICS. | 77 // To open a directory you need to pass FILE_FLAG_BACKUP_SEMANTICS. |
102 DWORD share = FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE; | 78 DWORD share = FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE; |
103 HANDLE file = ::CreateFileW(path, 0, share, NULL, OPEN_EXISTING, | 79 base::win::ScopedHandle file(::CreateFileW(path, 0, share, NULL, |
104 FILE_FLAG_BACKUP_SEMANTICS, NULL); | 80 OPEN_EXISTING, FILE_FLAG_BACKUP_SEMANTICS, NULL)); |
105 if (INVALID_HANDLE_VALUE == file) | 81 if (!file.IsValid()) |
106 return -1; | 82 return -1; |
83 | |
107 FILETIME time; | 84 FILETIME time; |
108 if (!::GetFileTime(file, NULL, NULL, &time)) { | 85 return ::GetFileTime(file, NULL, NULL, &time) ? FileTimeToHours(time) : -1; |
109 ::CloseHandle(file); | |
110 return -1; | |
111 } | |
112 | |
113 ::CloseHandle(file); | |
114 return FileTimeToHours(time); | |
115 } | 86 } |
116 | 87 |
117 // Returns the directory last-write time age in hours, relative to current | 88 // Returns the directory last-write time age in hours, relative to current |
118 // time, so if it returns 14 it means that the directory was last written 14 | 89 // time, so if it returns 14 it means that the directory was last written 14 |
119 // hours ago. Returns -1 if there was an error retrieving the directory. | 90 // hours ago. Returns -1 if there was an error retrieving the directory. |
120 int GetDirectoryWriteAgeInHours(const wchar_t* path) { | 91 int GetDirectoryWriteAgeInHours(const wchar_t* path) { |
121 int dir_time = GetDirectoryWriteTimeInHours(path); | 92 int dir_time = GetDirectoryWriteTimeInHours(path); |
122 if (dir_time < 0) | 93 if (dir_time < 0) |
123 return dir_time; | 94 return dir_time; |
124 FILETIME time; | 95 FILETIME time; |
125 GetSystemTimeAsFileTime(&time); | 96 GetSystemTimeAsFileTime(&time); |
126 int now_time = FileTimeToHours(time); | 97 int now_time = FileTimeToHours(time); |
127 if (dir_time >= now_time) | 98 if (dir_time >= now_time) |
128 return 0; | 99 return 0; |
129 return (now_time - dir_time); | 100 return (now_time - dir_time); |
130 } | 101 } |
131 | 102 |
132 // Launches setup.exe (located at |setup_path|) with |cmd_line|. | 103 // Launches setup.exe (located at |setup_path|) with |cmd_line|. |
133 // If system_level_toast is true, appends --system-level-toast. | 104 // If system_level_toast is true, appends --system-level-toast. |
134 // If handle to experiment result key was given at startup, re-add it. | 105 // If handle to experiment result key was given at startup, re-add it. |
135 // Does not wait for the process to terminate. | 106 // Does not wait for the process to terminate. |
136 // |cmd_line| may be modified as a result of this call. | 107 // |cmd_line| may be modified as a result of this call. |
137 bool LaunchSetup(CommandLine* cmd_line, | 108 bool LaunchSetup(CommandLine* cmd_line, bool system_level_toast) { |
138 const installer::Product& product, | |
139 bool system_level_toast) { | |
140 const CommandLine& current_cmd_line = *CommandLine::ForCurrentProcess(); | 109 const CommandLine& current_cmd_line = *CommandLine::ForCurrentProcess(); |
141 | 110 |
142 // Propagate --verbose-logging to the invoked setup.exe. | 111 // Propagate --verbose-logging to the invoked setup.exe. |
143 if (current_cmd_line.HasSwitch(installer::switches::kVerboseLogging)) | 112 if (current_cmd_line.HasSwitch(switches::kVerboseLogging)) |
144 cmd_line->AppendSwitch(installer::switches::kVerboseLogging); | 113 cmd_line->AppendSwitch(switches::kVerboseLogging); |
145 | |
146 // Pass along product-specific options. | |
147 product.AppendProductFlags(cmd_line); | |
148 | 114 |
149 // Re-add the system level toast flag. | 115 // Re-add the system level toast flag. |
150 if (system_level_toast) { | 116 if (system_level_toast) { |
151 cmd_line->AppendSwitch(installer::switches::kSystemLevel); | 117 cmd_line->AppendSwitch(switches::kSystemLevel); |
152 cmd_line->AppendSwitch(installer::switches::kSystemLevelToast); | 118 cmd_line->AppendSwitch(switches::kSystemLevelToast); |
153 | 119 |
154 // Re-add the toast result key. We need to do this because Setup running as | 120 // Re-add the toast result key. We need to do this because Setup running as |
155 // system passes the key to Setup running as user, but that child process | 121 // system passes the key to Setup running as user, but that child process |
156 // does not perform the actual toasting, it launches another Setup (as user) | 122 // does not perform the actual toasting, it launches another Setup (as user) |
157 // to do so. That is the process that needs the key. | 123 // to do so. That is the process that needs the key. |
158 std::string key(installer::switches::kToastResultsKey); | 124 std::string key(switches::kToastResultsKey); |
159 std::string toast_key = current_cmd_line.GetSwitchValueASCII(key); | 125 std::string toast_key = current_cmd_line.GetSwitchValueASCII(key); |
160 if (!toast_key.empty()) { | 126 if (!toast_key.empty()) { |
161 cmd_line->AppendSwitchASCII(key, toast_key); | 127 cmd_line->AppendSwitchASCII(key, toast_key); |
162 | 128 |
163 // Use handle inheritance to make sure the duplicated toast results key | 129 // Use handle inheritance to make sure the duplicated toast results key |
164 // gets inherited by the child process. | 130 // gets inherited by the child process. |
165 base::LaunchOptions options; | 131 base::LaunchOptions options; |
166 options.inherit_handles = true; | 132 options.inherit_handles = true; |
167 return base::LaunchProcess(*cmd_line, options, NULL); | 133 return base::LaunchProcess(*cmd_line, options, NULL); |
168 } | 134 } |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
221 } | 187 } |
222 | 188 |
223 // This function launches setup as the currently logged-in interactive | 189 // This function launches setup as the currently logged-in interactive |
224 // user that is the user whose logon session is attached to winsta0\default. | 190 // user that is the user whose logon session is attached to winsta0\default. |
225 // It assumes that currently we are running as SYSTEM in a non-interactive | 191 // It assumes that currently we are running as SYSTEM in a non-interactive |
226 // windowstation. | 192 // windowstation. |
227 // The function fails if there is no interactive session active, basically | 193 // The function fails if there is no interactive session active, basically |
228 // the computer is on but nobody has logged in locally. | 194 // the computer is on but nobody has logged in locally. |
229 // Remote Desktop sessions do not count as interactive sessions; running this | 195 // Remote Desktop sessions do not count as interactive sessions; running this |
230 // method as a user logged in via remote desktop will do nothing. | 196 // method as a user logged in via remote desktop will do nothing. |
231 bool LaunchSetupAsConsoleUser(const base::FilePath& setup_path, | 197 bool LaunchSetupAsConsoleUser(CommandLine* cmd_line) { |
gab
2013/03/21 14:53:28
I do not like this change, this method used to tak
grt (UTC plus 2)
2013/03/21 17:23:49
I wrestled with this a bit, too, but decided it wa
gab
2013/03/21 19:59:07
Hmmm ok, but I don't think existing bad code is an
huangs
2013/03/26 22:00:24
I think the entire UserExperiment stuff should be
| |
232 const installer::Product& product, | |
233 const std::string& flag) { | |
234 CommandLine cmd_line(setup_path); | |
235 cmd_line.AppendSwitch(flag); | |
236 | |
237 // Pass along product-specific options. | |
238 product.AppendProductFlags(&cmd_line); | |
gab
2013/03/21 14:53:28
Why are you no longer adding product flags?
grt (UTC plus 2)
2013/03/21 17:23:49
They're added earlier.
gab
2013/03/21 19:59:07
Where? The caller of LaunchSetupAsConsoleUser() do
grt (UTC plus 2)
2013/03/26 02:49:15
See ChromeBrowserOperations::LaunchUserExperiment.
gab
2013/03/26 15:02:00
Aaah, makes sense that it'd be there :)!
huangs
2013/03/26 22:00:24
No-op.
| |
239 | |
240 // Convey to the invoked setup.exe that it's operating on a system-level | 198 // Convey to the invoked setup.exe that it's operating on a system-level |
241 // installation. | 199 // installation. |
242 cmd_line.AppendSwitch(installer::switches::kSystemLevel); | 200 cmd_line->AppendSwitch(switches::kSystemLevel); |
243 | 201 |
244 // Propagate --verbose-logging to the invoked setup.exe. | 202 // Propagate --verbose-logging to the invoked setup.exe. |
245 if (CommandLine::ForCurrentProcess()->HasSwitch( | 203 if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kVerboseLogging)) |
246 installer::switches::kVerboseLogging)) { | 204 cmd_line->AppendSwitch(switches::kVerboseLogging); |
247 cmd_line.AppendSwitch(installer::switches::kVerboseLogging); | |
248 } | |
249 | 205 |
250 // Get the Google Update results key, and pass it on the command line to | 206 // Get the Google Update results key, and pass it on the command line to |
251 // the child process. | 207 // the child process. |
252 int key = GoogleUpdateSettings::DuplicateGoogleUpdateSystemClientKey(); | 208 int key = GoogleUpdateSettings::DuplicateGoogleUpdateSystemClientKey(); |
253 cmd_line.AppendSwitchASCII(installer::switches::kToastResultsKey, | 209 cmd_line->AppendSwitchASCII(switches::kToastResultsKey, |
254 base::IntToString(key)); | 210 base::IntToString(key)); |
255 | 211 |
256 if (base::win::GetVersion() > base::win::VERSION_XP) { | 212 if (base::win::GetVersion() > base::win::VERSION_XP) { |
257 // Make sure that in Vista and Above we have the proper DACLs so | 213 // Make sure that in Vista and Above we have the proper DACLs so |
258 // the interactive user can launch it. | 214 // the interactive user can launch it. |
259 if (!FixDACLsForExecute(setup_path)) | 215 if (!FixDACLsForExecute(cmd_line->GetProgram())) |
260 NOTREACHED(); | 216 NOTREACHED(); |
261 } | 217 } |
262 | 218 |
263 DWORD console_id = ::WTSGetActiveConsoleSessionId(); | 219 DWORD console_id = ::WTSGetActiveConsoleSessionId(); |
264 if (console_id == 0xFFFFFFFF) { | 220 if (console_id == 0xFFFFFFFF) { |
265 PLOG(ERROR) << __FUNCTION__ << " failed to get active session id"; | 221 PLOG(ERROR) << __FUNCTION__ << " failed to get active session id"; |
266 return false; | 222 return false; |
267 } | 223 } |
268 HANDLE user_token; | 224 HANDLE user_token; |
269 if (!::WTSQueryUserToken(console_id, &user_token)) { | 225 if (!::WTSQueryUserToken(console_id, &user_token)) { |
270 PLOG(ERROR) << __FUNCTION__ << " failed to get user token for console_id " | 226 PLOG(ERROR) << __FUNCTION__ << " failed to get user token for console_id " |
271 << console_id; | 227 << console_id; |
272 return false; | 228 return false; |
273 } | 229 } |
274 // Note: Handle inheritance must be true in order for the child process to be | 230 // Note: Handle inheritance must be true in order for the child process to be |
275 // able to use the duplicated handle above (Google Update results). | 231 // able to use the duplicated handle above (Google Update results). |
276 base::LaunchOptions options; | 232 base::LaunchOptions options; |
277 options.as_user = user_token; | 233 options.as_user = user_token; |
278 options.inherit_handles = true; | 234 options.inherit_handles = true; |
279 options.empty_desktop_name = true; | 235 options.empty_desktop_name = true; |
280 VLOG(1) << __FUNCTION__ << " launching " << cmd_line.GetCommandLineString(); | 236 VLOG(1) << __FUNCTION__ << " launching " << cmd_line->GetCommandLineString(); |
281 bool launched = base::LaunchProcess(cmd_line, options, NULL); | 237 bool launched = base::LaunchProcess(*cmd_line, options, NULL); |
282 ::CloseHandle(user_token); | 238 ::CloseHandle(user_token); |
283 VLOG(1) << __FUNCTION__ << " result: " << launched; | 239 VLOG(1) << __FUNCTION__ << " result: " << launched; |
284 return launched; | 240 return launched; |
285 } | 241 } |
286 | 242 |
287 } // namespace | |
288 | |
289 GoogleChromeDistribution::GoogleChromeDistribution() | |
290 : BrowserDistribution(CHROME_BROWSER), | |
291 product_guid_(kChromeGuid) { | |
292 } | |
293 | |
294 bool GoogleChromeDistribution::BuildUninstallMetricsString( | |
295 const DictionaryValue* uninstall_metrics_dict, string16* metrics) { | |
296 DCHECK(NULL != metrics); | |
297 bool has_values = false; | |
298 | |
299 for (DictionaryValue::Iterator iter(*uninstall_metrics_dict); !iter.IsAtEnd(); | |
300 iter.Advance()) { | |
301 has_values = true; | |
302 metrics->append(L"&"); | |
303 metrics->append(UTF8ToWide(iter.key())); | |
304 metrics->append(L"="); | |
305 | |
306 std::string value; | |
307 iter.value().GetAsString(&value); | |
308 metrics->append(UTF8ToWide(value)); | |
309 } | |
310 | |
311 return has_values; | |
312 } | |
313 | |
314 bool GoogleChromeDistribution::ExtractUninstallMetricsFromFile( | |
315 const base::FilePath& file_path, | |
316 string16* uninstall_metrics_string) { | |
317 JSONFileValueSerializer json_serializer(file_path); | |
318 | |
319 std::string json_error_string; | |
320 scoped_ptr<Value> root(json_serializer.Deserialize(NULL, NULL)); | |
321 if (!root.get()) | |
322 return false; | |
323 | |
324 // Preferences should always have a dictionary root. | |
325 if (!root->IsType(Value::TYPE_DICTIONARY)) | |
326 return false; | |
327 | |
328 return ExtractUninstallMetrics(*static_cast<DictionaryValue*>(root.get()), | |
329 uninstall_metrics_string); | |
330 } | |
331 | |
332 bool GoogleChromeDistribution::ExtractUninstallMetrics( | |
333 const DictionaryValue& root, | |
334 string16* uninstall_metrics_string) { | |
335 // Make sure that the user wants us reporting metrics. If not, don't | |
336 // add our uninstall metrics. | |
337 bool metrics_reporting_enabled = false; | |
338 if (!root.GetBoolean(prefs::kMetricsReportingEnabled, | |
339 &metrics_reporting_enabled) || | |
340 !metrics_reporting_enabled) { | |
341 return false; | |
342 } | |
343 | |
344 const DictionaryValue* uninstall_metrics_dict = NULL; | |
345 if (!root.HasKey(installer::kUninstallMetricsName) || | |
346 !root.GetDictionary(installer::kUninstallMetricsName, | |
347 &uninstall_metrics_dict)) { | |
348 return false; | |
349 } | |
350 | |
351 if (!BuildUninstallMetricsString(uninstall_metrics_dict, | |
352 uninstall_metrics_string)) { | |
353 return false; | |
354 } | |
355 | |
356 return true; | |
357 } | |
358 | |
359 void GoogleChromeDistribution::DoPostUninstallOperations( | |
360 const Version& version, | |
361 const base::FilePath& local_data_path, | |
362 const string16& distribution_data) { | |
363 // Send the Chrome version and OS version as params to the form. | |
364 // It would be nice to send the locale, too, but I don't see an | |
365 // easy way to get that in the existing code. It's something we | |
366 // can add later, if needed. | |
367 // We depend on installed_version.GetString() not having spaces or other | |
368 // characters that need escaping: 0.2.13.4. Should that change, we will | |
369 // need to escape the string before using it in a URL. | |
370 const string16 kVersionParam = L"crversion"; | |
371 const string16 kOSParam = L"os"; | |
372 base::win::OSInfo::VersionNumber version_number = | |
373 base::win::OSInfo::GetInstance()->version_number(); | |
374 string16 os_version = base::StringPrintf(L"%d.%d.%d", | |
375 version_number.major, version_number.minor, version_number.build); | |
376 | |
377 base::FilePath iexplore; | |
378 if (!PathService::Get(base::DIR_PROGRAM_FILES, &iexplore)) | |
379 return; | |
380 | |
381 iexplore = iexplore.AppendASCII("Internet Explorer"); | |
382 iexplore = iexplore.AppendASCII("iexplore.exe"); | |
383 | |
384 string16 command = iexplore.value() + L" " + GetUninstallSurveyUrl() + | |
385 L"&" + kVersionParam + L"=" + UTF8ToWide(version.GetString()) + L"&" + | |
386 kOSParam + L"=" + os_version; | |
387 | |
388 string16 uninstall_metrics; | |
389 if (ExtractUninstallMetricsFromFile(local_data_path, &uninstall_metrics)) { | |
390 // The user has opted into anonymous usage data collection, so append | |
391 // metrics and distribution data. | |
392 command += uninstall_metrics; | |
393 if (!distribution_data.empty()) { | |
394 command += L"&"; | |
395 command += distribution_data; | |
396 } | |
397 } | |
398 | |
399 int pid = 0; | |
400 // The reason we use WMI to launch the process is because the uninstall | |
401 // process runs inside a Job object controlled by the shell. As long as there | |
402 // are processes running, the shell will not close the uninstall applet. WMI | |
403 // allows us to escape from the Job object so the applet will close. | |
404 installer::WMIProcess::Launch(command, &pid); | |
405 } | |
406 | |
407 string16 GoogleChromeDistribution::GetActiveSetupGuid() { | |
408 return product_guid(); | |
409 } | |
410 | |
411 string16 GoogleChromeDistribution::GetAppGuid() { | |
412 return product_guid(); | |
413 } | |
414 | |
415 string16 GoogleChromeDistribution::GetBaseAppName() { | |
416 // I'd really like to return L ## PRODUCT_FULLNAME_STRING; but that's no good | |
417 // since it'd be "Chromium" in a non-Chrome build, which isn't at all what I | |
418 // want. Sigh. | |
419 return L"Google Chrome"; | |
420 } | |
421 | |
422 string16 GoogleChromeDistribution::GetAppShortCutName() { | |
423 const string16& app_shortcut_name = | |
424 installer::GetLocalizedString(IDS_PRODUCT_NAME_BASE); | |
425 return app_shortcut_name; | |
426 } | |
427 | |
428 string16 GoogleChromeDistribution::GetAlternateApplicationName() { | |
429 const string16& alt_product_name = | |
430 installer::GetLocalizedString(IDS_OEM_MAIN_SHORTCUT_NAME_BASE); | |
431 return alt_product_name; | |
432 } | |
433 | |
434 string16 GoogleChromeDistribution::GetBaseAppId() { | |
435 return kBrowserAppId; | |
436 } | |
437 | |
438 string16 GoogleChromeDistribution::GetInstallSubDir() { | |
439 string16 sub_dir(installer::kGoogleChromeInstallSubDir1); | |
440 sub_dir.append(L"\\"); | |
441 sub_dir.append(installer::kGoogleChromeInstallSubDir2); | |
442 return sub_dir; | |
443 } | |
444 | |
445 string16 GoogleChromeDistribution::GetPublisherName() { | |
446 const string16& publisher_name = | |
447 installer::GetLocalizedString(IDS_ABOUT_VERSION_COMPANY_NAME_BASE); | |
448 return publisher_name; | |
449 } | |
450 | |
451 string16 GoogleChromeDistribution::GetAppDescription() { | |
452 const string16& app_description = | |
453 installer::GetLocalizedString(IDS_SHORTCUT_TOOLTIP_BASE); | |
454 return app_description; | |
455 } | |
456 | |
457 std::string GoogleChromeDistribution::GetSafeBrowsingName() { | |
458 return "googlechrome"; | |
459 } | |
460 | |
461 string16 GoogleChromeDistribution::GetStateKey() { | |
462 string16 key(google_update::kRegPathClientState); | |
463 key.append(L"\\"); | |
464 key.append(product_guid()); | |
465 return key; | |
466 } | |
467 | |
468 string16 GoogleChromeDistribution::GetStateMediumKey() { | |
469 string16 key(google_update::kRegPathClientStateMedium); | |
470 key.append(L"\\"); | |
471 key.append(product_guid()); | |
472 return key; | |
473 } | |
474 | |
475 string16 GoogleChromeDistribution::GetStatsServerURL() { | |
476 return L"https://clients4.google.com/firefox/metrics/collect"; | |
477 } | |
478 | |
479 std::string GoogleChromeDistribution::GetNetworkStatsServer() const { | |
480 return chrome_common_net::kEchoTestServerLocation; | |
481 } | |
482 | |
483 std::string GoogleChromeDistribution::GetHttpPipeliningTestServer() const { | |
484 return chrome_common_net::kPipelineTestServerBaseUrl; | |
485 } | |
486 | |
487 string16 GoogleChromeDistribution::GetDistributionData(HKEY root_key) { | |
488 string16 sub_key(google_update::kRegPathClientState); | |
489 sub_key.append(L"\\"); | |
490 sub_key.append(product_guid()); | |
491 | |
492 base::win::RegKey client_state_key(root_key, sub_key.c_str(), KEY_READ); | |
493 string16 result; | |
494 string16 brand_value; | |
495 if (client_state_key.ReadValue(google_update::kRegRLZBrandField, | |
496 &brand_value) == ERROR_SUCCESS) { | |
497 result = google_update::kRegRLZBrandField; | |
498 result.append(L"="); | |
499 result.append(brand_value); | |
500 result.append(L"&"); | |
501 } | |
502 | |
503 string16 client_value; | |
504 if (client_state_key.ReadValue(google_update::kRegClientField, | |
505 &client_value) == ERROR_SUCCESS) { | |
506 result.append(google_update::kRegClientField); | |
507 result.append(L"="); | |
508 result.append(client_value); | |
509 result.append(L"&"); | |
510 } | |
511 | |
512 string16 ap_value; | |
513 // If we fail to read the ap key, send up "&ap=" anyway to indicate | |
514 // that this was probably a stable channel release. | |
515 client_state_key.ReadValue(google_update::kRegApField, &ap_value); | |
516 result.append(google_update::kRegApField); | |
517 result.append(L"="); | |
518 result.append(ap_value); | |
519 | |
520 return result; | |
521 } | |
522 | |
523 string16 GoogleChromeDistribution::GetUninstallLinkName() { | |
524 const string16& link_name = | |
525 installer::GetLocalizedString(IDS_UNINSTALL_CHROME_BASE); | |
526 return link_name; | |
527 } | |
528 | |
529 string16 GoogleChromeDistribution::GetUninstallRegPath() { | |
530 return L"Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\" | |
531 L"Google Chrome"; | |
532 } | |
533 | |
534 string16 GoogleChromeDistribution::GetVersionKey() { | |
535 string16 key(google_update::kRegPathClients); | |
536 key.append(L"\\"); | |
537 key.append(product_guid()); | |
538 return key; | |
539 } | |
540 | |
541 string16 GoogleChromeDistribution::GetIconFilename() { | |
542 return installer::kChromeExe; | |
543 } | |
544 | |
545 bool GoogleChromeDistribution::GetCommandExecuteImplClsid( | |
546 string16* handler_class_uuid) { | |
547 if (handler_class_uuid) | |
548 *handler_class_uuid = kCommandExecuteImplUuid; | |
549 return true; | |
550 } | |
551 | |
552 bool GoogleChromeDistribution::AppHostIsSupported() { | |
553 return true; | |
554 } | |
555 | |
556 // This method checks if we need to change "ap" key in Google Update to try | |
557 // full installer as fall back method in case incremental installer fails. | |
558 // - If incremental installer fails we append a magic string ("-full"), if | |
559 // it is not present already, so that Google Update server next time will send | |
560 // full installer to update Chrome on the local machine | |
561 // - If we are currently running full installer, we remove this magic | |
562 // string (if it is present) regardless of whether installer failed or not. | |
563 // There is no fall-back for full installer :) | |
564 void GoogleChromeDistribution::UpdateInstallStatus(bool system_install, | |
565 installer::ArchiveType archive_type, | |
566 installer::InstallStatus install_status) { | |
567 GoogleUpdateSettings::UpdateInstallStatus(system_install, | |
568 archive_type, InstallUtil::GetInstallReturnCode(install_status), | |
569 product_guid()); | |
570 } | |
571 | |
572 // A helper function that writes to HKLM if the handle was passed through the | 243 // A helper function that writes to HKLM if the handle was passed through the |
573 // command line, but HKCU otherwise. |experiment_group| is the value to write | 244 // command line, but HKCU otherwise. |experiment_group| is the value to write |
574 // and |last_write| is used when writing to HKLM to determine whether to close | 245 // and |last_write| is used when writing to HKLM to determine whether to close |
575 // the handle when done. | 246 // the handle when done. |
576 void SetClient(const string16& experiment_group, bool last_write) { | 247 void SetClient(const string16& experiment_group, bool last_write) { |
577 static int reg_key_handle = -1; | 248 static int reg_key_handle = -1; |
578 if (reg_key_handle == -1) { | 249 if (reg_key_handle == -1) { |
579 // If a specific Toast Results key handle (presumably to our HKLM key) was | 250 // If a specific Toast Results key handle (presumably to our HKLM key) was |
580 // passed in to the command line (such as for system level installs), we use | 251 // passed in to the command line (such as for system level installs), we use |
581 // it. Otherwise, we write to the key under HKCU. | 252 // it. Otherwise, we write to the key under HKCU. |
582 const CommandLine& cmd_line = *CommandLine::ForCurrentProcess(); | 253 const CommandLine& cmd_line = *CommandLine::ForCurrentProcess(); |
583 if (cmd_line.HasSwitch(installer::switches::kToastResultsKey)) { | 254 if (cmd_line.HasSwitch(switches::kToastResultsKey)) { |
584 // Get the handle to the key under HKLM. | 255 // Get the handle to the key under HKLM. |
585 base::StringToInt(cmd_line.GetSwitchValueASCII( | 256 base::StringToInt( |
586 installer::switches::kToastResultsKey).c_str(), | 257 cmd_line.GetSwitchValueNative(switches::kToastResultsKey), |
587 ®_key_handle); | 258 ®_key_handle); |
588 } else { | 259 } else { |
589 reg_key_handle = 0; | 260 reg_key_handle = 0; |
590 } | 261 } |
591 } | 262 } |
592 | 263 |
593 if (reg_key_handle) { | 264 if (reg_key_handle) { |
594 // Use it to write the experiment results. | 265 // Use it to write the experiment results. |
595 GoogleUpdateSettings::WriteGoogleUpdateSystemClientKey( | 266 GoogleUpdateSettings::WriteGoogleUpdateSystemClientKey( |
596 reg_key_handle, google_update::kRegClientField, experiment_group); | 267 reg_key_handle, google_update::kRegClientField, experiment_group); |
597 if (last_write) | 268 if (last_write) |
598 CloseHandle((HANDLE) reg_key_handle); | 269 CloseHandle((HANDLE) reg_key_handle); |
599 } else { | 270 } else { |
600 // Write to HKCU. | 271 // Write to HKCU. |
601 GoogleUpdateSettings::SetClient(experiment_group); | 272 GoogleUpdateSettings::SetClient(experiment_group); |
602 } | 273 } |
603 } | 274 } |
604 | 275 |
605 bool GoogleChromeDistribution::GetExperimentDetails( | 276 } // namespace |
606 UserExperiment* experiment, int flavor) { | 277 |
278 bool CreateExperimentDetails(int flavor, ExperimentDetails* experiment) { | |
607 struct FlavorDetails { | 279 struct FlavorDetails { |
608 int heading_id; | 280 int heading_id; |
609 int flags; | 281 int flags; |
610 }; | 282 }; |
611 // Maximum number of experiment flavors we support. | 283 // Maximum number of experiment flavors we support. |
612 static const int kMax = 4; | 284 static const int kMax = 4; |
613 // This struct determines which experiment flavors we show for each locale and | 285 // This struct determines which experiment flavors we show for each locale and |
614 // brand. | 286 // brand. |
615 // | 287 // |
616 // Plugin infobar experiment: | 288 // Plugin infobar experiment: |
617 // The experiment in 2011 used PIxx codes. | 289 // The experiment in 2011 used PIxx codes. |
618 // | 290 // |
619 // Inactive user toast experiment: | 291 // Inactive user toast experiment: |
620 // The experiment in Dec 2009 used TGxx and THxx. | 292 // The experiment in Dec 2009 used TGxx and THxx. |
621 // The experiment in Feb 2010 used TKxx and TLxx. | 293 // The experiment in Feb 2010 used TKxx and TLxx. |
622 // The experiment in Apr 2010 used TMxx and TNxx. | 294 // The experiment in Apr 2010 used TMxx and TNxx. |
623 // The experiment in Oct 2010 used TVxx TWxx TXxx TYxx. | 295 // The experiment in Oct 2010 used TVxx TWxx TXxx TYxx. |
624 // The experiment in Feb 2011 used SJxx SKxx SLxx SMxx. | 296 // The experiment in Feb 2011 used SJxx SKxx SLxx SMxx. |
625 // The experiment in Mar 2012 used ZAxx ZBxx ZCxx. | 297 // The experiment in Mar 2012 used ZAxx ZBxx ZCxx. |
626 // The experiment in Jan 2013 uses DAxx. | 298 // The experiment in Jan 2013 uses DAxx. |
627 using namespace attrition_experiments; | 299 using namespace attrition_experiments; |
628 | 300 |
629 static const struct UserExperimentDetails { | 301 static const struct UserExperimentSpecs { |
630 const wchar_t* locale; // Locale to show this experiment for (* for all). | 302 const wchar_t* locale; // Locale to show this experiment for (* for all). |
631 const wchar_t* brands; // Brand codes show this experiment for (* for all). | 303 const wchar_t* brands; // Brand codes show this experiment for (* for all). |
632 int control_group; // Size of the control group, in percentages. | 304 int control_group; // Size of the control group, in percentages. |
633 const wchar_t* prefix; // The two letter experiment code. The second letter | 305 const wchar_t* prefix; // The two letter experiment code. The second letter |
634 // will be incremented with the flavor. | 306 // will be incremented with the flavor. |
635 FlavorDetails flavors[kMax]; | 307 FlavorDetails flavors[kMax]; |
636 } kExperiments[] = { | 308 } kExperiments[] = { |
637 // The first match from top to bottom is used so this list should be ordered | 309 // The first match from top to bottom is used so this list should be ordered |
638 // most-specific rule first. | 310 // most-specific rule first. |
639 { L"*", L"GGRV", // All locales, GGRV is enterprise. | 311 { L"*", L"GGRV", // All locales, GGRV is enterprise. |
640 0, // 0 percent control group. | 312 0, // 0 percent control group. |
641 L"EA", // Experiment is EAxx, EBxx, etc. | 313 L"EA", // Experiment is EAxx, EBxx, etc. |
642 // No flavors means no experiment. | 314 // No flavors means no experiment. |
643 { { 0, 0 }, | 315 { { 0, 0 }, |
644 { 0, 0 }, | 316 { 0, 0 }, |
645 { 0, 0 }, | 317 { 0, 0 }, |
646 { 0, 0 } | 318 { 0, 0 } |
647 } | 319 } |
648 }, | 320 }, |
649 { L"*", L"*", // All locales, all brands. | 321 { L"*", L"*", // All locales, all brands. |
650 5, // 5 percent control group. | 322 5, // 5 percent control group. |
651 L"DA", // Experiment is DAxx. | 323 L"DA", // Experiment is DAxx. |
652 // One single flavor. | 324 // One single flavor. |
653 { { IDS_TRY_TOAST_HEADING3, kMakeDefault }, | 325 { { IDS_TRY_TOAST_HEADING3, kToastUiMakeDefault }, |
654 { 0, 0 }, | 326 { 0, 0 }, |
655 { 0, 0 }, | 327 { 0, 0 }, |
656 { 0, 0 } | 328 { 0, 0 } |
657 } | 329 } |
658 } | 330 } |
659 }; | 331 }; |
660 | 332 |
661 string16 locale; | 333 string16 locale; |
662 GoogleUpdateSettings::GetLanguage(&locale); | 334 GoogleUpdateSettings::GetLanguage(&locale); |
663 if (locale.empty() || (locale == ASCIIToWide("en"))) | 335 if (locale.empty() || (locale == ASCIIToWide("en"))) |
(...skipping 10 matching lines...) Expand all Loading... | |
674 | 346 |
675 std::vector<string16> brand_codes; | 347 std::vector<string16> brand_codes; |
676 base::SplitString(kExperiments[i].brands, L',', &brand_codes); | 348 base::SplitString(kExperiments[i].brands, L',', &brand_codes); |
677 if (brand_codes.empty()) | 349 if (brand_codes.empty()) |
678 return false; | 350 return false; |
679 for (std::vector<string16>::iterator it = brand_codes.begin(); | 351 for (std::vector<string16>::iterator it = brand_codes.begin(); |
680 it != brand_codes.end(); ++it) { | 352 it != brand_codes.end(); ++it) { |
681 if (*it != brand && *it != L"*") | 353 if (*it != brand && *it != L"*") |
682 continue; | 354 continue; |
683 // We have found our match. | 355 // We have found our match. |
684 const UserExperimentDetails& match = kExperiments[i]; | 356 const UserExperimentSpecs& match = kExperiments[i]; |
685 // Find out how many flavors we have. Zero means no experiment. | 357 // Find out how many flavors we have. Zero means no experiment. |
686 int num_flavors = 0; | 358 int num_flavors = 0; |
687 while (match.flavors[num_flavors].heading_id) { ++num_flavors; } | 359 while (match.flavors[num_flavors].heading_id) { ++num_flavors; } |
688 if (!num_flavors) | 360 if (!num_flavors) |
689 return false; | 361 return false; |
690 | 362 |
691 if (flavor < 0) | 363 if (flavor < 0) |
692 flavor = base::RandInt(0, num_flavors - 1); | 364 flavor = base::RandInt(0, num_flavors - 1); |
693 experiment->flavor = flavor; | 365 experiment->flavor = flavor; |
694 experiment->heading = match.flavors[flavor].heading_id; | 366 experiment->heading = match.flavors[flavor].heading_id; |
695 experiment->control_group = match.control_group; | 367 experiment->control_group = match.control_group; |
696 const wchar_t prefix[] = { match.prefix[0], match.prefix[1] + flavor, 0 }; | 368 const wchar_t prefix[] = { match.prefix[0], match.prefix[1] + flavor, 0 }; |
697 experiment->prefix = prefix; | 369 experiment->prefix = prefix; |
698 experiment->flags = match.flavors[flavor].flags; | 370 experiment->flags = match.flavors[flavor].flags; |
699 return true; | 371 return true; |
700 } | 372 } |
701 } | 373 } |
702 | 374 |
703 return false; | 375 return false; |
704 } | 376 } |
705 | 377 |
706 // Currently we only have one experiment: the inactive user toast. Which only | 378 // Currently we only have one experiment: the inactive user toast. Which only |
707 // applies for users doing upgrades. | 379 // applies for users doing upgrades. |
708 | 380 |
709 // | |
710 // There are three scenarios when this function is called: | 381 // There are three scenarios when this function is called: |
711 // 1- Is a per-user-install and it updated: perform the experiment | 382 // 1- Is a per-user-install and it updated: perform the experiment |
712 // 2- Is a system-install and it updated : relaunch as the interactive user | 383 // 2- Is a system-install and it updated : relaunch as the interactive user |
713 // 3- It has been re-launched from the #2 case. In this case we enter | 384 // 3- It has been re-launched from the #2 case. In this case we enter |
714 // this function with |system_install| true and a REENTRY_SYS_UPDATE status. | 385 // this function with |system_install| true and a REENTRY_SYS_UPDATE status. |
715 void GoogleChromeDistribution::LaunchUserExperiment( | 386 void LaunchBrowserUserExperiment(const CommandLine& base_cmd_line, |
716 const base::FilePath& setup_path, installer::InstallStatus status, | 387 InstallStatus status, |
717 const Version& version, const installer::Product& product, | 388 bool system_level) { |
718 bool system_level) { | |
719 VLOG(1) << "LaunchUserExperiment status: " << status << " product: " | |
720 << product.distribution()->GetAppShortCutName() | |
721 << " system_level: " << system_level; | |
722 | |
723 if (system_level) { | 389 if (system_level) { |
724 if (installer::NEW_VERSION_UPDATED == status) { | 390 if (NEW_VERSION_UPDATED == status) { |
391 CommandLine cmd_line(base_cmd_line); | |
392 cmd_line.AppendSwitch(switches::kSystemLevelToast); | |
725 // We need to relaunch as the interactive user. | 393 // We need to relaunch as the interactive user. |
726 LaunchSetupAsConsoleUser(setup_path, product, | 394 LaunchSetupAsConsoleUser(&cmd_line); |
727 installer::switches::kSystemLevelToast); | |
728 return; | 395 return; |
729 } | 396 } |
730 } else { | 397 } else { |
731 if ((installer::NEW_VERSION_UPDATED != status) && | 398 if ((NEW_VERSION_UPDATED != status) && (REENTRY_SYS_UPDATE != status)) { |
gab
2013/03/21 14:53:28
nit:
if (status != NEW_VERSION_UPDATED && status
huangs
2013/03/26 22:00:24
Done.
| |
732 (installer::REENTRY_SYS_UPDATE != status)) { | |
733 // We are not updating or in re-launch. Exit. | 399 // We are not updating or in re-launch. Exit. |
734 return; | 400 return; |
735 } | 401 } |
736 } | 402 } |
737 | 403 |
738 // The |flavor| value ends up being processed by TryChromeDialogView to show | 404 // The |flavor| value ends up being processed by TryChromeDialogView to show |
739 // different experiments. | 405 // different experiments. |
740 UserExperiment experiment; | 406 ExperimentDetails experiment; |
741 if (!GetExperimentDetails(&experiment, -1)) { | 407 if (!CreateExperimentDetails(-1, &experiment)) { |
742 VLOG(1) << "Failed to get experiment details."; | 408 VLOG(1) << "Failed to get experiment details."; |
743 return; | 409 return; |
744 } | 410 } |
745 int flavor = experiment.flavor; | 411 int flavor = experiment.flavor; |
746 string16 base_group = experiment.prefix; | 412 string16 base_group = experiment.prefix; |
747 | 413 |
748 string16 brand; | 414 string16 brand; |
749 if (GoogleUpdateSettings::GetBrand(&brand) && (brand == L"CHXX")) { | 415 if (GoogleUpdateSettings::GetBrand(&brand) && (brand == L"CHXX")) { |
750 // Testing only: the user automatically qualifies for the experiment. | 416 // Testing only: the user automatically qualifies for the experiment. |
751 VLOG(1) << "Experiment qualification bypass"; | 417 VLOG(1) << "Experiment qualification bypass"; |
752 } else { | 418 } else { |
753 // Check that the user was not already drafted in this experiment. | 419 // Check that the user was not already drafted in this experiment. |
754 string16 client; | 420 string16 client; |
755 GoogleUpdateSettings::GetClient(&client); | 421 GoogleUpdateSettings::GetClient(&client); |
756 if (client.size() > 2) { | 422 if (client.size() > 2) { |
757 if (base_group == client.substr(0, 2)) { | 423 if (base_group == client.substr(0, 2)) { |
758 VLOG(1) << "User already participated in this experiment"; | 424 VLOG(1) << "User already participated in this experiment"; |
759 return; | 425 return; |
760 } | 426 } |
761 } | 427 } |
762 // Check browser usage inactivity by the age of the last-write time of the | 428 // Check browser usage inactivity by the age of the last-write time of the |
763 // most recently-used chrome user data directory. | 429 // most recently-used chrome user data directory. |
764 std::vector<base::FilePath> user_data_dirs; | 430 std::vector<base::FilePath> user_data_dirs; |
765 product.GetUserDataPaths(&user_data_dirs); | 431 BrowserDistribution* dist = BrowserDistribution::GetSpecificDistribution( |
432 BrowserDistribution::CHROME_BROWSER); | |
gab
2013/03/21 14:53:28
I know that only the chrome_product_operations cal
grt (UTC plus 2)
2013/03/21 17:23:49
I think this code is sufficiently Chrome-the-brows
gab
2013/03/21 19:59:07
Sure, especially that it was renamed to LaunchBrow
grt (UTC plus 2)
2013/03/26 02:49:15
My logic was thus: this is a browser-specific func
gab
2013/03/26 15:02:00
Ok, your proposal sounds good, but I don't think i
huangs
2013/03/26 22:00:24
No-op.
| |
433 GetChromeUserDataPaths(dist, &user_data_dirs); | |
766 int dir_age_hours = -1; | 434 int dir_age_hours = -1; |
767 for (size_t i = 0; i < user_data_dirs.size(); ++i) { | 435 for (size_t i = 0; i < user_data_dirs.size(); ++i) { |
768 int this_age = GetDirectoryWriteAgeInHours( | 436 int this_age = GetDirectoryWriteAgeInHours( |
769 user_data_dirs[i].value().c_str()); | 437 user_data_dirs[i].value().c_str()); |
770 if (this_age >= 0 && (dir_age_hours < 0 || this_age < dir_age_hours)) | 438 if (this_age >= 0 && (dir_age_hours < 0 || this_age < dir_age_hours)) |
771 dir_age_hours = this_age; | 439 dir_age_hours = this_age; |
772 } | 440 } |
773 | 441 |
774 const bool experiment_enabled = false; | 442 const bool experiment_enabled = false; |
775 const int kThirtyDays = 30 * 24; | 443 const int kThirtyDays = 30 * 24; |
(...skipping 21 matching lines...) Expand all Loading... | |
797 return; | 465 return; |
798 } | 466 } |
799 } | 467 } |
800 | 468 |
801 VLOG(1) << "User drafted for toast experiment " << flavor; | 469 VLOG(1) << "User drafted for toast experiment " << flavor; |
802 SetClient(base_group + kToastExpBaseGroup, false); | 470 SetClient(base_group + kToastExpBaseGroup, false); |
803 // User level: The experiment needs to be performed in a different process | 471 // User level: The experiment needs to be performed in a different process |
804 // because google_update expects the upgrade process to be quick and nimble. | 472 // because google_update expects the upgrade process to be quick and nimble. |
805 // System level: We have already been relaunched, so we don't need to be | 473 // System level: We have already been relaunched, so we don't need to be |
806 // quick, but we relaunch to follow the exact same codepath. | 474 // quick, but we relaunch to follow the exact same codepath. |
807 CommandLine cmd_line(setup_path); | 475 CommandLine cmd_line(base_cmd_line); |
808 cmd_line.AppendSwitchASCII(installer::switches::kInactiveUserToast, | 476 cmd_line.AppendSwitchASCII(switches::kInactiveUserToast, |
809 base::IntToString(flavor)); | 477 base::IntToString(flavor)); |
810 cmd_line.AppendSwitchASCII(installer::switches::kExperimentGroup, | 478 cmd_line.AppendSwitchASCII(switches::kExperimentGroup, |
811 WideToASCII(base_group)); | 479 WideToASCII(base_group)); |
812 LaunchSetup(&cmd_line, product, system_level); | 480 LaunchSetup(&cmd_line, system_level); |
813 } | 481 } |
814 | 482 |
815 // User qualifies for the experiment. To test, use --try-chrome-again=|flavor| | 483 // User qualifies for the experiment. To test, use --try-chrome-again=|flavor| |
816 // as a parameter to chrome.exe. | 484 // as a parameter to chrome.exe. |
817 void GoogleChromeDistribution::InactiveUserToastExperiment(int flavor, | 485 void InactiveUserToastExperiment(int flavor, |
818 const string16& experiment_group, | 486 const string16& experiment_group, |
819 const installer::Product& installation, | 487 const Product& installation, |
gab
2013/03/21 14:53:28
nit: Why not call this parameter |product| like al
grt (UTC plus 2)
2013/03/21 17:23:49
History.
gab
2013/03/21 19:59:07
Right, would be nice to correct it in a follow-up
huangs
2013/03/26 22:00:24
Done (since this is a smaller CL, should be harmle
| |
820 const base::FilePath& application_path) { | 488 const base::FilePath& application_path) { |
821 // Add the 'welcome back' url for chrome to show. | 489 // Add the 'welcome back' url for chrome to show. |
822 CommandLine options(CommandLine::NO_PROGRAM); | 490 CommandLine options(CommandLine::NO_PROGRAM); |
823 options.AppendSwitchNative(switches::kTryChromeAgain, | 491 options.AppendSwitchNative(::switches::kTryChromeAgain, |
824 base::IntToString16(flavor)); | 492 base::IntToString16(flavor)); |
825 // Prepend the url with a space. | 493 // Prepend the url with a space. |
826 string16 url(GetWelcomeBackUrl()); | 494 string16 url(GetWelcomeBackUrl()); |
827 options.AppendArg("--"); | 495 options.AppendArg("--"); |
828 options.AppendArgNative(url); | 496 options.AppendArgNative(url); |
829 // The command line should now have the url added as: | 497 // The command line should now have the url added as: |
830 // "chrome.exe -- <url>" | 498 // "chrome.exe -- <url>" |
831 DCHECK_NE(string16::npos, | 499 DCHECK_NE(string16::npos, |
832 options.GetCommandLineString().find(L" -- " + url)); | 500 options.GetCommandLineString().find(L" -- " + url)); |
833 | 501 |
(...skipping 19 matching lines...) Expand all Loading... | |
853 }; | 521 }; |
854 // Write to the |client| key for the last time. | 522 // Write to the |client| key for the last time. |
855 SetClient(experiment_group + outcome, true); | 523 SetClient(experiment_group + outcome, true); |
856 | 524 |
857 if (outcome != kToastExpUninstallGroup) | 525 if (outcome != kToastExpUninstallGroup) |
858 return; | 526 return; |
859 // The user wants to uninstall. This is a best effort operation. Note that | 527 // The user wants to uninstall. This is a best effort operation. Note that |
860 // we waited for chrome to exit so the uninstall would not detect chrome | 528 // we waited for chrome to exit so the uninstall would not detect chrome |
861 // running. | 529 // running. |
862 bool system_level_toast = CommandLine::ForCurrentProcess()->HasSwitch( | 530 bool system_level_toast = CommandLine::ForCurrentProcess()->HasSwitch( |
863 installer::switches::kSystemLevelToast); | 531 switches::kSystemLevelToast); |
864 | 532 |
865 CommandLine cmd(InstallUtil::GetChromeUninstallCmd(system_level_toast, | 533 CommandLine cmd(InstallUtil::GetChromeUninstallCmd(system_level_toast, |
866 GetType())); | 534 installation.distribution()->GetType())); |
gab
2013/03/21 14:53:28
I find this indentation hard to read, I think this
huangs
2013/03/26 22:00:24
Done.
| |
867 base::LaunchProcess(cmd, base::LaunchOptions(), NULL); | 535 base::LaunchProcess(cmd, base::LaunchOptions(), NULL); |
868 } | 536 } |
869 | 537 |
870 bool GoogleChromeDistribution::ShouldSetExperimentLabels() { | 538 } // namespace installer |
871 return true; | |
872 } | |
OLD | NEW |