OLD | NEW |
---|---|
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 10 #pragma once |
(...skipping 25 matching lines...) Expand all Loading... | |
36 virtual std::wstring GetLongAppDescription() OVERRIDE; | 36 virtual std::wstring GetLongAppDescription() OVERRIDE; |
37 | 37 |
38 virtual std::string GetSafeBrowsingName() OVERRIDE; | 38 virtual std::string GetSafeBrowsingName() OVERRIDE; |
39 | 39 |
40 virtual std::wstring GetStateKey() OVERRIDE; | 40 virtual std::wstring GetStateKey() OVERRIDE; |
41 | 41 |
42 virtual std::wstring GetStateMediumKey() OVERRIDE; | 42 virtual std::wstring GetStateMediumKey() OVERRIDE; |
43 | 43 |
44 virtual std::wstring GetStatsServerURL() OVERRIDE; | 44 virtual std::wstring GetStatsServerURL() OVERRIDE; |
45 | 45 |
46 virtual std::string GetNetworkStatsServer() OVERRIDE; | |
willchan no longer on Chromium
2011/06/04 19:26:51
I don't know why these methods aren't const. I gue
ramant (doing other things)
2011/06/05 17:54:13
Done.
| |
47 | |
46 virtual std::wstring GetUninstallLinkName() OVERRIDE; | 48 virtual std::wstring GetUninstallLinkName() OVERRIDE; |
47 | 49 |
48 virtual std::wstring GetUninstallRegPath() OVERRIDE; | 50 virtual std::wstring GetUninstallRegPath() OVERRIDE; |
49 | 51 |
50 virtual std::wstring GetVersionKey() OVERRIDE; | 52 virtual std::wstring GetVersionKey() OVERRIDE; |
51 | 53 |
52 virtual bool CanSetAsDefault() OVERRIDE; | 54 virtual bool CanSetAsDefault() OVERRIDE; |
53 | 55 |
54 virtual void UpdateInstallStatus(bool system_install, | 56 virtual void UpdateInstallStatus(bool system_install, |
55 installer::ArchiveType archive_type, | 57 installer::ArchiveType archive_type, |
56 installer::InstallStatus install_status) OVERRIDE; | 58 installer::InstallStatus install_status) OVERRIDE; |
57 | 59 |
58 protected: | 60 protected: |
59 friend class BrowserDistribution; | 61 friend class BrowserDistribution; |
60 | 62 |
61 // Disallow construction from non-friends. | 63 // Disallow construction from non-friends. |
62 ChromeFrameDistribution(); | 64 ChromeFrameDistribution(); |
63 }; | 65 }; |
64 | 66 |
65 #endif // CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_ | 67 #endif // CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_ |
OLD | NEW |