| 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 // This file extends generic BrowserDistribution class to declare Google Chrome | 5 // This file extends generic BrowserDistribution class to declare Google Chrome |
| 6 // specific implementation. | 6 // specific implementation. |
| 7 | 7 |
| 8 #ifndef CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ | 8 #ifndef CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ |
| 9 #define CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ | 9 #define CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ |
| 10 | 10 |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 73 | 73 |
| 74 bool ShouldSetExperimentLabels() override; | 74 bool ShouldSetExperimentLabels() override; |
| 75 | 75 |
| 76 bool HasUserExperiments() override; | 76 bool HasUserExperiments() override; |
| 77 | 77 |
| 78 protected: | 78 protected: |
| 79 // Disallow construction from others. | 79 // Disallow construction from others. |
| 80 GoogleChromeDistribution(); | 80 GoogleChromeDistribution(); |
| 81 | 81 |
| 82 explicit GoogleChromeDistribution( | 82 explicit GoogleChromeDistribution( |
| 83 scoped_ptr<AppRegistrationData> app_reg_data); | 83 std::unique_ptr<AppRegistrationData> app_reg_data); |
| 84 | 84 |
| 85 private: | 85 private: |
| 86 friend class BrowserDistribution; | 86 friend class BrowserDistribution; |
| 87 }; | 87 }; |
| 88 | 88 |
| 89 #endif // CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ | 89 #endif // CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ |
| OLD | NEW |