| 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 #ifndef CHROME_INSTALLER_UTIL_PRODUCT_OPERATIONS_H_ | 5 #ifndef CHROME_INSTALLER_UTIL_PRODUCT_OPERATIONS_H_ |
| 6 #define CHROME_INSTALLER_UTIL_PRODUCT_OPERATIONS_H_ | 6 #define CHROME_INSTALLER_UTIL_PRODUCT_OPERATIONS_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
| 13 #include "base/string16.h" | 13 #include "base/strings/string16.h" |
| 14 #include "chrome/installer/util/shell_util.h" | 14 #include "chrome/installer/util/shell_util.h" |
| 15 #include "chrome/installer/util/util_constants.h" | 15 #include "chrome/installer/util/util_constants.h" |
| 16 | 16 |
| 17 class BrowserDistribution; | 17 class BrowserDistribution; |
| 18 class CommandLine; | 18 class CommandLine; |
| 19 | 19 |
| 20 namespace installer { | 20 namespace installer { |
| 21 | 21 |
| 22 class ChannelInfo; | 22 class ChannelInfo; |
| 23 class MasterPreferences; | 23 class MasterPreferences; |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 // sets the wheels in motion or in simple cases does the experiment itself. | 89 // sets the wheels in motion or in simple cases does the experiment itself. |
| 90 virtual void LaunchUserExperiment(const base::FilePath& setup_path, | 90 virtual void LaunchUserExperiment(const base::FilePath& setup_path, |
| 91 const std::set<string16>& options, | 91 const std::set<string16>& options, |
| 92 InstallStatus status, | 92 InstallStatus status, |
| 93 bool system_level) const = 0; | 93 bool system_level) const = 0; |
| 94 }; | 94 }; |
| 95 | 95 |
| 96 } // namespace installer | 96 } // namespace installer |
| 97 | 97 |
| 98 #endif // CHROME_INSTALLER_UTIL_PRODUCT_OPERATIONS_H_ | 98 #endif // CHROME_INSTALLER_UTIL_PRODUCT_OPERATIONS_H_ |
| OLD | NEW |