| Index: chrome/browser/shell_integration.h | 
| diff --git a/chrome/browser/shell_integration.h b/chrome/browser/shell_integration.h | 
| index 27cdc7c421450c7a3d67aff02bda10ff1b376ff5..6844451df2d359d4fd545c352934eec44ebf3d58 100644 | 
| --- a/chrome/browser/shell_integration.h | 
| +++ b/chrome/browser/shell_integration.h | 
| @@ -92,62 +92,6 @@ class ShellIntegration { | 
| static DefaultWebClientState | 
| IsDefaultProtocolClient(const std::string& protocol); | 
|  | 
| -  struct ShortcutInfo { | 
| -    ShortcutInfo(); | 
| -    ~ShortcutInfo(); | 
| - | 
| -    GURL url; | 
| -    // If |extension_id| is non-empty, this is short cut is to an extension-app | 
| -    // and the launch url will be detected at start-up. In this case, |url| | 
| -    // is still used to generate the app id (windows app id, not chrome app id). | 
| -    std::string extension_id; | 
| -    bool is_platform_app; | 
| -    base::string16 title; | 
| -    base::string16 description; | 
| -    base::FilePath extension_path; | 
| -    gfx::ImageFamily favicon; | 
| -    base::FilePath profile_path; | 
| -    std::string profile_name; | 
| -  }; | 
| - | 
| -  // This specifies a folder in the system applications menu (e.g the Start Menu | 
| -  // on Windows). | 
| -  // | 
| -  // These represent the applications menu root, the "Google Chrome" folder and | 
| -  // the "Chrome Apps" folder respectively. | 
| -  // | 
| -  // NB: On Linux, these locations may not be used by the window manager (e.g | 
| -  // Unity and Gnome Shell). | 
| -  enum ApplicationsMenuLocation { | 
| -    APP_MENU_LOCATION_NONE, | 
| -    APP_MENU_LOCATION_ROOT, | 
| -    APP_MENU_LOCATION_SUBDIR_CHROME, | 
| -    APP_MENU_LOCATION_SUBDIR_CHROMEAPPS, | 
| -  }; | 
| - | 
| -  // Info about which locations to create app shortcuts in. | 
| -  struct ShortcutLocations { | 
| -    ShortcutLocations(); | 
| - | 
| -    bool on_desktop; | 
| - | 
| -    ApplicationsMenuLocation applications_menu_location; | 
| - | 
| -    // For Windows, this refers to quick launch bar prior to Win7. In Win7, | 
| -    // this means "pin to taskbar". For Mac/Linux, this could be used for | 
| -    // Mac dock or the gnome/kde application launcher. However, those are not | 
| -    // implemented yet. | 
| -    bool in_quick_launch_bar; | 
| - | 
| -#if defined(OS_POSIX) | 
| -    // For Linux, this refers to a shortcut which the system knows about (for | 
| -    // the purpose of identifying windows and giving them the correct | 
| -    // title/icon), but which does not show up in menus or search results. | 
| -    // Ignored if applications_menu_location is not APP_MENU_LOCATION_NONE. | 
| -    bool hidden; | 
| -#endif | 
| -  }; | 
| - | 
| // Data that needs to be passed between the app launcher stub and Chrome. | 
| struct AppModeInfo { | 
| }; | 
|  |