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 28 matching lines...) Expand all Loading... |
39 virtual string16 GetShortcutName(ShortcutType shortcut_type) OVERRIDE; | 39 virtual string16 GetShortcutName(ShortcutType shortcut_type) OVERRIDE; |
40 | 40 |
41 virtual string16 GetIconFilename() OVERRIDE; | 41 virtual string16 GetIconFilename() OVERRIDE; |
42 | 42 |
43 virtual int GetIconIndex(ShortcutType shortcut_type) OVERRIDE; | 43 virtual int GetIconIndex(ShortcutType shortcut_type) OVERRIDE; |
44 | 44 |
45 virtual string16 GetBaseAppName() OVERRIDE; | 45 virtual string16 GetBaseAppName() OVERRIDE; |
46 | 46 |
47 virtual string16 GetBaseAppId() OVERRIDE; | 47 virtual string16 GetBaseAppId() OVERRIDE; |
48 | 48 |
| 49 virtual string16 GetBrowserProgIdPrefix() OVERRIDE; |
| 50 |
| 51 virtual string16 GetBrowserProgIdDesc() OVERRIDE; |
| 52 |
49 virtual string16 GetInstallSubDir() OVERRIDE; | 53 virtual string16 GetInstallSubDir() OVERRIDE; |
50 | 54 |
51 virtual string16 GetPublisherName() OVERRIDE; | 55 virtual string16 GetPublisherName() OVERRIDE; |
52 | 56 |
53 virtual string16 GetAppDescription() OVERRIDE; | 57 virtual string16 GetAppDescription() OVERRIDE; |
54 | 58 |
55 virtual std::string GetSafeBrowsingName() OVERRIDE; | 59 virtual std::string GetSafeBrowsingName() OVERRIDE; |
56 | 60 |
57 virtual string16 GetStateKey() OVERRIDE; | 61 virtual string16 GetStateKey() OVERRIDE; |
58 | 62 |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 GoogleChromeDistribution(); | 100 GoogleChromeDistribution(); |
97 | 101 |
98 private: | 102 private: |
99 friend class BrowserDistribution; | 103 friend class BrowserDistribution; |
100 | 104 |
101 // The product ID for Google Update. | 105 // The product ID for Google Update. |
102 string16 product_guid_; | 106 string16 product_guid_; |
103 }; | 107 }; |
104 | 108 |
105 #endif // CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ | 109 #endif // CHROME_INSTALLER_UTIL_GOOGLE_CHROME_DISTRIBUTION_H_ |
OLD | NEW |