| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "chrome/installer/util/chrome_browser_operations.h" | 5 #include "chrome/installer/util/chrome_browser_operations.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/file_util.h" | |
| 9 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
| 9 #include "base/files/file_util.h" |
| 10 #include "base/logging.h" | 10 #include "base/logging.h" |
| 11 #include "base/strings/string_util.h" | 11 #include "base/strings/string_util.h" |
| 12 #include "chrome/installer/util/browser_distribution.h" | 12 #include "chrome/installer/util/browser_distribution.h" |
| 13 #include "chrome/installer/util/channel_info.h" | 13 #include "chrome/installer/util/channel_info.h" |
| 14 #include "chrome/installer/util/helper.h" | 14 #include "chrome/installer/util/helper.h" |
| 15 #include "chrome/installer/util/install_util.h" | 15 #include "chrome/installer/util/install_util.h" |
| 16 #include "chrome/installer/util/master_preferences.h" | 16 #include "chrome/installer/util/master_preferences.h" |
| 17 #include "chrome/installer/util/master_preferences_constants.h" | 17 #include "chrome/installer/util/master_preferences_constants.h" |
| 18 #include "chrome/installer/util/shell_util.h" | 18 #include "chrome/installer/util/shell_util.h" |
| 19 #include "chrome/installer/util/user_experiment.h" | 19 #include "chrome/installer/util/user_experiment.h" |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 const base::FilePath& setup_path, | 142 const base::FilePath& setup_path, |
| 143 const std::set<base::string16>& options, | 143 const std::set<base::string16>& options, |
| 144 InstallStatus status, | 144 InstallStatus status, |
| 145 bool system_level) const { | 145 bool system_level) const { |
| 146 CommandLine base_command(setup_path); | 146 CommandLine base_command(setup_path); |
| 147 AppendProductFlags(options, &base_command); | 147 AppendProductFlags(options, &base_command); |
| 148 installer::LaunchBrowserUserExperiment(base_command, status, system_level); | 148 installer::LaunchBrowserUserExperiment(base_command, status, system_level); |
| 149 } | 149 } |
| 150 | 150 |
| 151 } // namespace installer | 151 } // namespace installer |
| OLD | NEW |