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> |
11 | 11 |
12 #include "chrome/installer/util/browser_distribution.h" | 12 #include "chrome/installer/util/browser_distribution.h" |
13 | 13 |
14 class ChromiumBinariesDistribution : public BrowserDistribution { | 14 class ChromiumBinariesDistribution : public BrowserDistribution { |
15 public: | 15 public: |
16 virtual string16 GetAppGuid() OVERRIDE; | 16 virtual string16 GetAppGuid() OVERRIDE; |
17 | 17 |
18 virtual string16 GetBaseAppName() OVERRIDE; | 18 virtual string16 GetBaseAppName() OVERRIDE; |
19 | 19 |
20 virtual string16 GetAppShortCutName() OVERRIDE; | 20 virtual string16 GetAppShortCutName() OVERRIDE; |
21 | 21 |
22 virtual string16 GetAlternateApplicationName() OVERRIDE; | 22 virtual string16 GetAlternateApplicationName() OVERRIDE; |
23 | 23 |
| 24 virtual string16 GetAppListShortcutName() OVERRIDE; |
| 25 |
| 26 virtual string16 GetAppShortcutsSubdirName() OVERRIDE; |
| 27 |
24 virtual string16 GetBaseAppId() OVERRIDE; | 28 virtual string16 GetBaseAppId() OVERRIDE; |
25 | 29 |
26 virtual string16 GetInstallSubDir() OVERRIDE; | 30 virtual string16 GetInstallSubDir() OVERRIDE; |
27 | 31 |
28 virtual string16 GetPublisherName() OVERRIDE; | 32 virtual string16 GetPublisherName() OVERRIDE; |
29 | 33 |
30 virtual string16 GetAppDescription() OVERRIDE; | 34 virtual string16 GetAppDescription() OVERRIDE; |
31 | 35 |
32 virtual string16 GetLongAppDescription() OVERRIDE; | 36 virtual string16 GetLongAppDescription() OVERRIDE; |
33 | 37 |
(...skipping 23 matching lines...) Expand all Loading... |
57 | 61 |
58 ChromiumBinariesDistribution(); | 62 ChromiumBinariesDistribution(); |
59 | 63 |
60 BrowserDistribution* browser_distribution_; | 64 BrowserDistribution* browser_distribution_; |
61 | 65 |
62 private: | 66 private: |
63 DISALLOW_COPY_AND_ASSIGN(ChromiumBinariesDistribution); | 67 DISALLOW_COPY_AND_ASSIGN(ChromiumBinariesDistribution); |
64 }; | 68 }; |
65 | 69 |
66 #endif // CHROME_INSTALLER_UTIL_CHROMIUM_BINARIES_DISTRIBUTION_H_ | 70 #endif // CHROME_INSTALLER_UTIL_CHROMIUM_BINARIES_DISTRIBUTION_H_ |
OLD | NEW |