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 |
| 11 #include <memory> |
| 12 |
11 #include "base/strings/string16.h" | 13 #include "base/strings/string16.h" |
12 #include "chrome/installer/util/browser_distribution.h" | 14 #include "chrome/installer/util/browser_distribution.h" |
13 | 15 |
14 namespace base { | 16 namespace base { |
15 class FilePath; | 17 class FilePath; |
16 } | 18 } |
17 | 19 |
18 class AppRegistrationData; | 20 class AppRegistrationData; |
19 | 21 |
20 class GoogleChromeDistribution : public BrowserDistribution { | 22 class GoogleChromeDistribution : public BrowserDistribution { |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
80 GoogleChromeDistribution(); | 82 GoogleChromeDistribution(); |
81 | 83 |
82 explicit GoogleChromeDistribution( | 84 explicit GoogleChromeDistribution( |
83 std::unique_ptr<AppRegistrationData> app_reg_data); | 85 std::unique_ptr<AppRegistrationData> app_reg_data); |
84 | 86 |
85 private: | 87 private: |
86 friend class BrowserDistribution; | 88 friend class BrowserDistribution; |
87 }; | 89 }; |
88 | 90 |
89 #endif // CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ | 91 #endif // CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ |
OLD | NEW |