OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 the browser distribution with a specific implementation | 5 // This file extends the browser distribution with a specific implementation |
6 // for Chrome Frame. | 6 // for Chrome Frame. |
7 | 7 |
8 #ifndef CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_ | 8 #ifndef CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_ |
9 #define CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_ | 9 #define CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_ |
10 | 10 |
(...skipping 25 matching lines...) Expand all Loading... |
36 virtual std::wstring GetStateMediumKey(); | 36 virtual std::wstring GetStateMediumKey(); |
37 | 37 |
38 virtual std::wstring GetStatsServerURL(); | 38 virtual std::wstring GetStatsServerURL(); |
39 | 39 |
40 virtual std::wstring GetUninstallLinkName(); | 40 virtual std::wstring GetUninstallLinkName(); |
41 | 41 |
42 virtual std::wstring GetUninstallRegPath(); | 42 virtual std::wstring GetUninstallRegPath(); |
43 | 43 |
44 virtual std::wstring GetVersionKey(); | 44 virtual std::wstring GetVersionKey(); |
45 | 45 |
| 46 virtual std::wstring GetEnvVersionKey(); |
| 47 |
46 virtual bool CanSetAsDefault(); | 48 virtual bool CanSetAsDefault(); |
47 | 49 |
48 // This is the point at which the Google Chrome installer removes the Google | 50 // This is the point at which the Google Chrome installer removes the Google |
49 // Update ap value. We implement this simply to have the same behaviour re. | 51 // Update ap value. We implement this simply to have the same behaviour re. |
50 // the ap value. | 52 // the ap value. |
51 virtual void UpdateDiffInstallStatus(bool system_install, | 53 virtual void UpdateDiffInstallStatus(bool system_install, |
52 bool incremental_install, installer_util::InstallStatus install_status); | 54 bool incremental_install, installer_util::InstallStatus install_status); |
53 | 55 |
54 private: | 56 private: |
55 friend class BrowserDistribution; | 57 friend class BrowserDistribution; |
56 | 58 |
57 // Disallow construction from non-friends. | 59 // Disallow construction from non-friends. |
58 ChromeFrameDistribution() {} | 60 ChromeFrameDistribution() {} |
59 | 61 |
60 }; | 62 }; |
61 | 63 |
62 #endif // CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_ | 64 #endif // CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_ |
OLD | NEW |