| 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 28 matching lines...) Expand all Loading... |
| 39 virtual base::string16 GetLongAppDescription() OVERRIDE; | 39 virtual base::string16 GetLongAppDescription() OVERRIDE; |
| 40 | 40 |
| 41 virtual std::string GetSafeBrowsingName() OVERRIDE; | 41 virtual std::string GetSafeBrowsingName() OVERRIDE; |
| 42 | 42 |
| 43 virtual base::string16 GetStateKey() OVERRIDE; | 43 virtual base::string16 GetStateKey() OVERRIDE; |
| 44 | 44 |
| 45 virtual base::string16 GetStateMediumKey() OVERRIDE; | 45 virtual base::string16 GetStateMediumKey() OVERRIDE; |
| 46 | 46 |
| 47 virtual std::string GetNetworkStatsServer() const OVERRIDE; | 47 virtual std::string GetNetworkStatsServer() const OVERRIDE; |
| 48 | 48 |
| 49 virtual std::string GetHttpPipeliningTestServer() const OVERRIDE; | |
| 50 | |
| 51 virtual base::string16 GetUninstallLinkName() OVERRIDE; | 49 virtual base::string16 GetUninstallLinkName() OVERRIDE; |
| 52 | 50 |
| 53 virtual base::string16 GetUninstallRegPath() OVERRIDE; | 51 virtual base::string16 GetUninstallRegPath() OVERRIDE; |
| 54 | 52 |
| 55 virtual base::string16 GetVersionKey() OVERRIDE; | 53 virtual base::string16 GetVersionKey() OVERRIDE; |
| 56 | 54 |
| 57 virtual DefaultBrowserControlPolicy GetDefaultBrowserControlPolicy() OVERRIDE; | 55 virtual DefaultBrowserControlPolicy GetDefaultBrowserControlPolicy() OVERRIDE; |
| 58 | 56 |
| 59 virtual bool CanCreateDesktopShortcuts() OVERRIDE; | 57 virtual bool CanCreateDesktopShortcuts() OVERRIDE; |
| 60 | 58 |
| 61 virtual bool GetCommandExecuteImplClsid( | 59 virtual bool GetCommandExecuteImplClsid( |
| 62 base::string16* handler_class_uuid) OVERRIDE; | 60 base::string16* handler_class_uuid) OVERRIDE; |
| 63 | 61 |
| 64 virtual void UpdateInstallStatus(bool system_install, | 62 virtual void UpdateInstallStatus(bool system_install, |
| 65 installer::ArchiveType archive_type, | 63 installer::ArchiveType archive_type, |
| 66 installer::InstallStatus install_status) OVERRIDE; | 64 installer::InstallStatus install_status) OVERRIDE; |
| 67 | 65 |
| 68 protected: | 66 protected: |
| 69 friend class BrowserDistribution; | 67 friend class BrowserDistribution; |
| 70 | 68 |
| 71 // Disallow construction from non-friends. | 69 // Disallow construction from non-friends. |
| 72 ChromeAppHostDistribution(); | 70 ChromeAppHostDistribution(); |
| 73 }; | 71 }; |
| 74 | 72 |
| 75 #endif // CHROME_INSTALLER_UTIL_CHROME_APP_HOST_DISTRIBUTION_H_ | 73 #endif // CHROME_INSTALLER_UTIL_CHROME_APP_HOST_DISTRIBUTION_H_ |
| OLD | NEW |