| OLD | NEW |
| 1 // Copyright 2013 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 files declares a class that contains methods and data to conduct | 5 // This files declares a class that contains methods and data to conduct |
| 6 // for user expeirments. | 6 // for user expeirments. |
| 7 | 7 |
| 8 #ifndef CHROME_INSTALLER_UTIL_USER_EXPERIMENT_H_ | 8 #ifndef CHROME_INSTALLER_UTIL_USER_EXPERIMENT_H_ |
| 9 #define CHROME_INSTALLER_UTIL_USER_EXPERIMENT_H_ | 9 #define CHROME_INSTALLER_UTIL_USER_EXPERIMENT_H_ |
| 10 | 10 |
| 11 #include "base/string16.h" | 11 #include "base/strings/string16.h" |
| 12 #include "chrome/installer/util/util_constants.h" | 12 #include "chrome/installer/util/util_constants.h" |
| 13 | 13 |
| 14 class CommandLine; | 14 class CommandLine; |
| 15 | 15 |
| 16 namespace base { | 16 namespace base { |
| 17 class FilePath; | 17 class FilePath; |
| 18 } | 18 } |
| 19 | 19 |
| 20 namespace installer { | 20 namespace installer { |
| 21 | 21 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 // The user has qualified for the inactive user toast experiment and this | 59 // The user has qualified for the inactive user toast experiment and this |
| 60 // function just performs it. | 60 // function just performs it. |
| 61 void InactiveUserToastExperiment(int flavor, | 61 void InactiveUserToastExperiment(int flavor, |
| 62 const string16& experiment_group, | 62 const string16& experiment_group, |
| 63 const Product& product, | 63 const Product& product, |
| 64 const base::FilePath& application_path); | 64 const base::FilePath& application_path); |
| 65 | 65 |
| 66 } // namespace installer | 66 } // namespace installer |
| 67 | 67 |
| 68 #endif // CHROME_INSTALLER_UTIL_USER_EXPERIMENT_H_ | 68 #endif // CHROME_INSTALLER_UTIL_USER_EXPERIMENT_H_ |
| OLD | NEW |