| 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 AppHost. | 6 // for Chrome AppHost. |
| 7 | 7 |
| 8 #ifndef CHROME_INSTALLER_UTIL_CHROME_APP_HOST_DISTRIBUTION_H_ | 8 #ifndef CHROME_INSTALLER_UTIL_CHROME_APP_HOST_DISTRIBUTION_H_ |
| 9 #define CHROME_INSTALLER_UTIL_CHROME_APP_HOST_DISTRIBUTION_H_ | 9 #define CHROME_INSTALLER_UTIL_CHROME_APP_HOST_DISTRIBUTION_H_ |
| 10 | 10 |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 virtual string16 GetUninstallLinkName() OVERRIDE; | 46 virtual string16 GetUninstallLinkName() OVERRIDE; |
| 47 | 47 |
| 48 virtual string16 GetUninstallRegPath() OVERRIDE; | 48 virtual string16 GetUninstallRegPath() OVERRIDE; |
| 49 | 49 |
| 50 virtual string16 GetVersionKey() OVERRIDE; | 50 virtual string16 GetVersionKey() OVERRIDE; |
| 51 | 51 |
| 52 virtual bool CanSetAsDefault() OVERRIDE; | 52 virtual bool CanSetAsDefault() OVERRIDE; |
| 53 | 53 |
| 54 virtual bool CanCreateDesktopShortcuts() OVERRIDE; | 54 virtual bool CanCreateDesktopShortcuts() OVERRIDE; |
| 55 | 55 |
| 56 virtual int GetIconIndex() OVERRIDE; | 56 virtual string16 GetIconFilename() OVERRIDE; |
| 57 | 57 |
| 58 virtual bool GetCommandExecuteImplClsid( | 58 virtual bool GetCommandExecuteImplClsid( |
| 59 string16* handler_class_uuid) OVERRIDE; | 59 string16* handler_class_uuid) OVERRIDE; |
| 60 | 60 |
| 61 virtual void UpdateInstallStatus(bool system_install, | 61 virtual void UpdateInstallStatus(bool system_install, |
| 62 installer::ArchiveType archive_type, | 62 installer::ArchiveType archive_type, |
| 63 installer::InstallStatus install_status) OVERRIDE; | 63 installer::InstallStatus install_status) OVERRIDE; |
| 64 | 64 |
| 65 protected: | 65 protected: |
| 66 friend class BrowserDistribution; | 66 friend class BrowserDistribution; |
| 67 | 67 |
| 68 // Disallow construction from non-friends. | 68 // Disallow construction from non-friends. |
| 69 ChromeAppHostDistribution(); | 69 ChromeAppHostDistribution(); |
| 70 }; | 70 }; |
| 71 | 71 |
| 72 #endif // CHROME_INSTALLER_UTIL_CHROME_APP_HOST_DISTRIBUTION_H_ | 72 #endif // CHROME_INSTALLER_UTIL_CHROME_APP_HOST_DISTRIBUTION_H_ |
| OLD | NEW |