| 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 generic BrowserDistribution class to declare Google Chrome | 5 // This file extends generic BrowserDistribution class to declare Google Chrome |
| 6 // specific implementation. | 6 // specific implementation. |
| 7 | 7 |
| 8 #ifndef CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ | 8 #ifndef CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ |
| 9 #define CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ | 9 #define CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ |
| 10 | 10 |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 base::string16 GetActiveSetupGuid() override; | 38 base::string16 GetActiveSetupGuid() override; |
| 39 | 39 |
| 40 base::string16 GetShortcutName() override; | 40 base::string16 GetShortcutName() override; |
| 41 | 41 |
| 42 base::string16 GetIconFilename() override; | 42 base::string16 GetIconFilename() override; |
| 43 | 43 |
| 44 int GetIconIndex() override; | 44 int GetIconIndex() override; |
| 45 | 45 |
| 46 base::string16 GetBaseAppName() override; | 46 base::string16 GetBaseAppName() override; |
| 47 | 47 |
| 48 base::string16 GetBrowserProgIdPrefix() override; | |
| 49 | |
| 50 base::string16 GetBrowserProgIdDesc() override; | |
| 51 | |
| 52 base::string16 GetPublisherName() override; | 48 base::string16 GetPublisherName() override; |
| 53 | 49 |
| 54 base::string16 GetAppDescription() override; | 50 base::string16 GetAppDescription() override; |
| 55 | 51 |
| 56 std::string GetSafeBrowsingName() override; | 52 std::string GetSafeBrowsingName() override; |
| 57 | 53 |
| 58 // This method reads data from the Google Update ClientState key for | 54 // This method reads data from the Google Update ClientState key for |
| 59 // potential use in the uninstall survey. It must be called before the | 55 // potential use in the uninstall survey. It must be called before the |
| 60 // key returned by GetVersionKey() is deleted. | 56 // key returned by GetVersionKey() is deleted. |
| 61 base::string16 GetDistributionData(HKEY root_key) override; | 57 base::string16 GetDistributionData(HKEY root_key) override; |
| (...skipping 16 matching lines...) Expand all Loading... |
| 78 GoogleChromeDistribution(); | 74 GoogleChromeDistribution(); |
| 79 | 75 |
| 80 explicit GoogleChromeDistribution( | 76 explicit GoogleChromeDistribution( |
| 81 std::unique_ptr<AppRegistrationData> app_reg_data); | 77 std::unique_ptr<AppRegistrationData> app_reg_data); |
| 82 | 78 |
| 83 private: | 79 private: |
| 84 friend class BrowserDistribution; | 80 friend class BrowserDistribution; |
| 85 }; | 81 }; |
| 86 | 82 |
| 87 #endif // CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ | 83 #endif // CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ |
| OLD | NEW |