| 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 26 matching lines...) Expand all Loading... |
| 37 base::string16 GetLongAppDescription() override; | 37 base::string16 GetLongAppDescription() override; |
| 38 | 38 |
| 39 std::string GetSafeBrowsingName() override; | 39 std::string GetSafeBrowsingName() override; |
| 40 | 40 |
| 41 base::string16 GetUninstallRegPath() override; | 41 base::string16 GetUninstallRegPath() override; |
| 42 | 42 |
| 43 DefaultBrowserControlPolicy GetDefaultBrowserControlPolicy() override; | 43 DefaultBrowserControlPolicy GetDefaultBrowserControlPolicy() override; |
| 44 | 44 |
| 45 bool GetChromeChannel(base::string16* channel) override; | 45 bool GetChromeChannel(base::string16* channel) override; |
| 46 | 46 |
| 47 bool GetCommandExecuteImplClsid(base::string16* handler_class_uuid) override; | 47 base::string16 GetCommandExecuteImplClsid() override; |
| 48 | 48 |
| 49 protected: | 49 protected: |
| 50 friend class BrowserDistribution; | 50 friend class BrowserDistribution; |
| 51 | 51 |
| 52 ChromiumBinariesDistribution(); | 52 ChromiumBinariesDistribution(); |
| 53 | 53 |
| 54 explicit ChromiumBinariesDistribution( | 54 explicit ChromiumBinariesDistribution( |
| 55 scoped_ptr<AppRegistrationData> app_reg_data); | 55 scoped_ptr<AppRegistrationData> app_reg_data); |
| 56 | 56 |
| 57 BrowserDistribution* browser_distribution_; | 57 BrowserDistribution* browser_distribution_; |
| 58 | 58 |
| 59 private: | 59 private: |
| 60 DISALLOW_COPY_AND_ASSIGN(ChromiumBinariesDistribution); | 60 DISALLOW_COPY_AND_ASSIGN(ChromiumBinariesDistribution); |
| 61 }; | 61 }; |
| 62 | 62 |
| 63 #endif // CHROME_INSTALLER_UTIL_CHROMIUM_BINARIES_DISTRIBUTION_H_ | 63 #endif // CHROME_INSTALLER_UTIL_CHROMIUM_BINARIES_DISTRIBUTION_H_ |
| OLD | NEW |