| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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 declares a class that contains various method related to branding. | 5 // This file declares a class that contains various method related to branding. |
| 6 | 6 |
| 7 #ifndef CHROME_INSTALLER_UTIL_BROWSER_DISTRIBUTION_H_ | 7 #ifndef CHROME_INSTALLER_UTIL_BROWSER_DISTRIBUTION_H_ |
| 8 #define CHROME_INSTALLER_UTIL_BROWSER_DISTRIBUTION_H_ | 8 #define CHROME_INSTALLER_UTIL_BROWSER_DISTRIBUTION_H_ |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 | 31 |
| 32 virtual std::wstring GetInstallSubDir(); | 32 virtual std::wstring GetInstallSubDir(); |
| 33 | 33 |
| 34 virtual std::wstring GetPublisherName(); | 34 virtual std::wstring GetPublisherName(); |
| 35 | 35 |
| 36 virtual std::wstring GetAppDescription(); | 36 virtual std::wstring GetAppDescription(); |
| 37 | 37 |
| 38 virtual int GetInstallReturnCode( | 38 virtual int GetInstallReturnCode( |
| 39 installer_util::InstallStatus install_status); | 39 installer_util::InstallStatus install_status); |
| 40 | 40 |
| 41 virtual std::string GetSafeBrowsingName(); |
| 42 |
| 41 virtual std::wstring GetStateKey(); | 43 virtual std::wstring GetStateKey(); |
| 42 | 44 |
| 43 virtual std::wstring GetStateMediumKey(); | 45 virtual std::wstring GetStateMediumKey(); |
| 44 | 46 |
| 45 virtual std::wstring GetStatsServerURL(); | 47 virtual std::wstring GetStatsServerURL(); |
| 46 | 48 |
| 47 virtual std::wstring GetDistributionData(RegKey* key); | 49 virtual std::wstring GetDistributionData(RegKey* key); |
| 48 | 50 |
| 49 virtual std::wstring GetUninstallLinkName(); | 51 virtual std::wstring GetUninstallLinkName(); |
| 50 | 52 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 69 protected: | 71 protected: |
| 70 BrowserDistribution() {} | 72 BrowserDistribution() {} |
| 71 | 73 |
| 72 static BrowserDistribution* GetDistribution(bool chrome_frame); | 74 static BrowserDistribution* GetDistribution(bool chrome_frame); |
| 73 | 75 |
| 74 private: | 76 private: |
| 75 DISALLOW_COPY_AND_ASSIGN(BrowserDistribution); | 77 DISALLOW_COPY_AND_ASSIGN(BrowserDistribution); |
| 76 }; | 78 }; |
| 77 | 79 |
| 78 #endif // CHROME_INSTALLER_UTIL_BROWSER_DISTRIBUTION_H_ | 80 #endif // CHROME_INSTALLER_UTIL_BROWSER_DISTRIBUTION_H_ |
| OLD | NEW |