Index: chrome/installer/util/browser_distribution.h |
diff --git a/chrome/installer/util/browser_distribution.h b/chrome/installer/util/browser_distribution.h |
index 2baf37d2538c691ca95f5c180f31f920c9f47caa..933903de7e975eaac1f35f2065795335b8654df7 100644 |
--- a/chrome/installer/util/browser_distribution.h |
+++ b/chrome/installer/util/browser_distribution.h |
@@ -32,11 +32,6 @@ class BrowserDistribution { |
NUM_TYPES |
}; |
- enum ShortcutType { |
- SHORTCUT_CHROME, |
- SHORTCUT_APP_LAUNCHER |
- }; |
- |
enum Subfolder { |
SUBFOLDER_CHROME, |
SUBFOLDER_APPS, |
@@ -81,20 +76,19 @@ class BrowserDistribution { |
// Returns the localized display name of this distribution. |
virtual base::string16 GetDisplayName(); |
- // Returns the localized name of the shortcut identified by |shortcut_type| |
- // for this distribution. |
- virtual base::string16 GetShortcutName(ShortcutType shortcut_type); |
+ // Returns the localized name of the Chrome shortcut for this distribution. |
+ virtual base::string16 GetShortcutName(); |
- // Returns the index of the icon for the product identified by |
- // |shortcut_type|, inside the file specified by GetIconFilename(). |
- virtual int GetIconIndex(ShortcutType shortcut_type); |
+ // Returns the index of the Chrome icon for this distribution, inside the file |
+ // specified by GetIconFilename(). |
+ virtual int GetIconIndex(); |
// Returns the executable filename (not path) that contains the product icon. |
virtual base::string16 GetIconFilename(); |
// Returns the localized name of the subfolder in the Start Menu identified by |
// |subfolder_type| that this distribution should create shortcuts in. For |
- // SUBFOLDER_CHROME this returns GetShortcutName(SHORTCUT_CHROME). |
+ // SUBFOLDER_CHROME this returns GetShortcutName(). |
virtual base::string16 GetStartMenuShortcutSubfolder( |
Subfolder subfolder_type); |