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 the browser distribution with a specific implementation | 5 // This file extends the browser distribution with a specific implementation |
6 // for Chrome Frame. | 6 // for Chrome Frame. |
7 | 7 |
8 #ifndef CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_ | 8 #ifndef CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_ |
9 #define CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_ | 9 #define CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_ |
10 | 10 |
11 #include "chrome/installer/util/browser_distribution.h" | 11 #include "chrome/installer/util/browser_distribution.h" |
12 #include "chrome/installer/util/util_constants.h" | 12 #include "chrome/installer/util/util_constants.h" |
13 | 13 |
14 class ChromeFrameDistribution : public BrowserDistribution { | 14 class ChromeFrameDistribution : public BrowserDistribution { |
15 public: | 15 public: |
16 base::string16 GetBrowserProgIdPrefix() override; | 16 base::string16 GetBrowserProgIdPrefix() override; |
17 | 17 |
18 base::string16 GetBrowserProgIdDesc() override; | 18 base::string16 GetBrowserProgIdDesc() override; |
19 | 19 |
20 base::string16 GetDisplayName() override; | 20 base::string16 GetDisplayName() override; |
21 | 21 |
22 base::string16 GetShortcutName(ShortcutType shortcut_type) override; | 22 base::string16 GetShortcutName() override; |
23 | 23 |
24 int GetIconIndex(ShortcutType shortcut_type) override; | 24 int GetIconIndex() override; |
25 | 25 |
26 base::string16 GetBaseAppName() override; | 26 base::string16 GetBaseAppName() override; |
27 | 27 |
28 base::string16 GetInstallSubDir() override; | 28 base::string16 GetInstallSubDir() override; |
29 | 29 |
30 base::string16 GetPublisherName() override; | 30 base::string16 GetPublisherName() override; |
31 | 31 |
32 base::string16 GetAppDescription() override; | 32 base::string16 GetAppDescription() override; |
33 | 33 |
34 base::string16 GetLongAppDescription() override; | 34 base::string16 GetLongAppDescription() override; |
(...skipping 15 matching lines...) Expand all Loading... |
50 installer::InstallStatus install_status) override; | 50 installer::InstallStatus install_status) override; |
51 | 51 |
52 protected: | 52 protected: |
53 friend class BrowserDistribution; | 53 friend class BrowserDistribution; |
54 | 54 |
55 // Disallow construction from non-friends. | 55 // Disallow construction from non-friends. |
56 ChromeFrameDistribution(); | 56 ChromeFrameDistribution(); |
57 }; | 57 }; |
58 | 58 |
59 #endif // CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_ | 59 #endif // CHROME_INSTALLER_UTIL_CHROME_FRAME_DISTRIBUTION_H_ |
OLD | NEW |