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