| Index: chrome/installer/util/chrome_app_host_distribution.h
|
| diff --git a/chrome/installer/util/chrome_app_host_distribution.h b/chrome/installer/util/chrome_app_host_distribution.h
|
| index 5648abde7f1451f04003fe6a32ab00ef6674a7da..24e007a32eebd79342b3028ed75f4751cce7f25b 100644
|
| --- a/chrome/installer/util/chrome_app_host_distribution.h
|
| +++ b/chrome/installer/util/chrome_app_host_distribution.h
|
| @@ -15,11 +15,14 @@ class ChromeAppHostDistribution : public BrowserDistribution {
|
| public:
|
| virtual string16 GetAppGuid() OVERRIDE;
|
|
|
| - virtual string16 GetBaseAppName() OVERRIDE;
|
| + virtual string16 GetDisplayName() OVERRIDE;
|
| +
|
| + // This can only be called with SHORTCUT_APP_LAUNCHER for |shortcut_type|.
|
| + virtual string16 GetShortcutName(ShortcutType shortcut_type) OVERRIDE;
|
|
|
| - virtual string16 GetAppShortCutName() OVERRIDE;
|
| + virtual string16 GetIconFilename() OVERRIDE;
|
|
|
| - virtual string16 GetAlternateApplicationName() OVERRIDE;
|
| + virtual string16 GetBaseAppName() OVERRIDE;
|
|
|
| virtual string16 GetBaseAppId() OVERRIDE;
|
|
|
| @@ -51,8 +54,6 @@ class ChromeAppHostDistribution : public BrowserDistribution {
|
|
|
| virtual bool CanCreateDesktopShortcuts() OVERRIDE;
|
|
|
| - virtual string16 GetIconFilename() OVERRIDE;
|
| -
|
| virtual bool GetCommandExecuteImplClsid(
|
| string16* handler_class_uuid) OVERRIDE;
|
|
|
|
|