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 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 28 matching lines...) Expand all Loading... | |
39 virtual string16 GetStateMediumKey() OVERRIDE; | 39 virtual string16 GetStateMediumKey() OVERRIDE; |
40 | 40 |
41 virtual string16 GetUninstallLinkName() OVERRIDE; | 41 virtual string16 GetUninstallLinkName() OVERRIDE; |
42 | 42 |
43 virtual string16 GetUninstallRegPath() OVERRIDE; | 43 virtual string16 GetUninstallRegPath() OVERRIDE; |
44 | 44 |
45 virtual string16 GetVersionKey() OVERRIDE; | 45 virtual string16 GetVersionKey() OVERRIDE; |
46 | 46 |
47 virtual bool CanSetAsDefault() OVERRIDE; | 47 virtual bool CanSetAsDefault() OVERRIDE; |
48 | 48 |
49 virtual int GetIconIndex() OVERRIDE; | 49 virtual bool CanCreateDesktopShortcuts() OVERRIDE; |
50 virtual bool GetDelegateExecuteHandlerData(string16* handler_class_uuid, | |
tommi (sloooow) - chröme
2012/07/12 08:11:31
would it make sense to group these into a struct?
erikwright (departed)
2012/07/16 20:13:11
Possibly. grt@, when you get back, WDYT?
grt (UTC plus 2)
2012/07/23 11:31:12
I think it's fine as-is. Callers can pass NULL fo
| |
51 string16* type_lib_uuid, | |
52 string16* type_lib_version, | |
53 string16* interface_uuid) OVERRIDE; | |
50 | 54 |
51 virtual bool GetChromeChannel(string16* channel) OVERRIDE; | 55 virtual bool GetChromeChannel(string16* channel) OVERRIDE; |
52 | 56 |
53 protected: | 57 protected: |
54 friend class BrowserDistribution; | 58 friend class BrowserDistribution; |
55 | 59 |
56 ChromiumBinariesDistribution(); | 60 ChromiumBinariesDistribution(); |
57 | 61 |
58 BrowserDistribution* browser_distribution_; | 62 BrowserDistribution* browser_distribution_; |
59 | 63 |
60 private: | 64 private: |
61 DISALLOW_COPY_AND_ASSIGN(ChromiumBinariesDistribution); | 65 DISALLOW_COPY_AND_ASSIGN(ChromiumBinariesDistribution); |
62 }; | 66 }; |
63 | 67 |
64 #endif // CHROME_INSTALLER_UTIL_CHROMIUM_BINARIES_DISTRIBUTION_H_ | 68 #endif // CHROME_INSTALLER_UTIL_CHROMIUM_BINARIES_DISTRIBUTION_H_ |
OLD | NEW |