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 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 virtual std::wstring GetUninstallLinkName() OVERRIDE; | 48 virtual std::wstring GetUninstallLinkName() OVERRIDE; |
49 | 49 |
50 virtual std::wstring GetUninstallRegPath() OVERRIDE; | 50 virtual std::wstring GetUninstallRegPath() OVERRIDE; |
51 | 51 |
52 virtual std::wstring GetVersionKey() OVERRIDE; | 52 virtual std::wstring GetVersionKey() OVERRIDE; |
53 | 53 |
54 virtual bool CanSetAsDefault() OVERRIDE; | 54 virtual bool CanSetAsDefault() OVERRIDE; |
55 | 55 |
56 virtual bool CanCreateDesktopShortcuts() OVERRIDE; | 56 virtual bool CanCreateDesktopShortcuts() OVERRIDE; |
57 | 57 |
| 58 virtual bool GetDelegateExecuteHandlerData(string16* handler_class_uuid, |
| 59 string16* type_lib_uuid, |
| 60 string16* type_lib_version, |
| 61 string16* interface_uuid) OVERRIDE; |
| 62 |
58 virtual void UpdateInstallStatus(bool system_install, | 63 virtual void UpdateInstallStatus(bool system_install, |
59 installer::ArchiveType archive_type, | 64 installer::ArchiveType archive_type, |
60 installer::InstallStatus install_status) OVERRIDE; | 65 installer::InstallStatus install_status) OVERRIDE; |
61 | 66 |
62 protected: | 67 protected: |
63 friend class BrowserDistribution; | 68 friend class BrowserDistribution; |
64 | 69 |
65 // Disallow construction from non-friends. | 70 // Disallow construction from non-friends. |
66 ChromeFrameDistribution(); | 71 ChromeFrameDistribution(); |
67 }; | 72 }; |
68 | 73 |
69 #endif // CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_ | 74 #endif // CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_ |
OLD | NEW |