| 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 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_CHROMIUM_BINARIES_DISTRIBUTION_H_ | 7 #ifndef CHROME_INSTALLER_UTIL_CHROMIUM_BINARIES_DISTRIBUTION_H_ |
| 8 #define CHROME_INSTALLER_UTIL_CHROMIUM_BINARIES_DISTRIBUTION_H_ | 8 #define CHROME_INSTALLER_UTIL_CHROMIUM_BINARIES_DISTRIBUTION_H_ |
| 9 | 9 |
| 10 #include <string> | 10 #include <string> |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 virtual string16 GetUninstallRegPath() OVERRIDE; | 42 virtual string16 GetUninstallRegPath() OVERRIDE; |
| 43 | 43 |
| 44 virtual string16 GetVersionKey() OVERRIDE; | 44 virtual string16 GetVersionKey() OVERRIDE; |
| 45 | 45 |
| 46 virtual bool CanSetAsDefault() OVERRIDE; | 46 virtual bool CanSetAsDefault() OVERRIDE; |
| 47 | 47 |
| 48 virtual int GetIconIndex() OVERRIDE; | 48 virtual int GetIconIndex() OVERRIDE; |
| 49 | 49 |
| 50 virtual bool GetChromeChannel(string16* channel) OVERRIDE; | 50 virtual bool GetChromeChannel(string16* channel) OVERRIDE; |
| 51 | 51 |
| 52 virtual bool GetDelegateExecuteHandlerData(string16* handler_class_uuid, |
| 53 string16* type_lib_uuid, |
| 54 string16* type_lib_version, |
| 55 string16* interface_uuid) OVERRIDE; |
| 56 |
| 52 protected: | 57 protected: |
| 53 friend class BrowserDistribution; | 58 friend class BrowserDistribution; |
| 54 | 59 |
| 55 ChromiumBinariesDistribution(); | 60 ChromiumBinariesDistribution(); |
| 56 | 61 |
| 57 BrowserDistribution* browser_distribution_; | 62 BrowserDistribution* browser_distribution_; |
| 58 | 63 |
| 59 private: | 64 private: |
| 60 DISALLOW_COPY_AND_ASSIGN(ChromiumBinariesDistribution); | 65 DISALLOW_COPY_AND_ASSIGN(ChromiumBinariesDistribution); |
| 61 }; | 66 }; |
| 62 | 67 |
| 63 #endif // CHROME_INSTALLER_UTIL_CHROMIUM_BINARIES_DISTRIBUTION_H_ | 68 #endif // CHROME_INSTALLER_UTIL_CHROMIUM_BINARIES_DISTRIBUTION_H_ |
| OLD | NEW |