| Index: chrome/browser/ui/web_applications/web_app_ui.h
|
| diff --git a/chrome/browser/ui/web_applications/web_app_ui.h b/chrome/browser/ui/web_applications/web_app_ui.h
|
| index 8d7d422f8294016788d669e1cbb4eb7648efb455..6a613f525cea01ce9804cdbc1b22837e153637d1 100644
|
| --- a/chrome/browser/ui/web_applications/web_app_ui.h
|
| +++ b/chrome/browser/ui/web_applications/web_app_ui.h
|
| @@ -11,20 +11,19 @@
|
| #include "chrome/browser/shell_integration.h"
|
|
|
| class TabContents;
|
| -typedef TabContents TabContentsWrapper;
|
|
|
| namespace web_app {
|
|
|
| -// Extracts shortcut info of given TabContentsWrapper.
|
| -void GetShortcutInfoForTab(TabContentsWrapper* tab_contents,
|
| +// Extracts shortcut info of given TabContents.
|
| +void GetShortcutInfoForTab(TabContents* tab_contents,
|
| ShellIntegration::ShortcutInfo* info);
|
|
|
| -// Updates web app shortcut of the TabContentsWrapper. This function checks and
|
| +// Updates web app shortcut of the TabContents. This function checks and
|
| // updates web app icon and shortcuts if needed. For icon, the check is based
|
| // on MD5 hash of icon image. For shortcuts, it checks the desktop, start menu
|
| // and quick launch (as well as pinned shortcut) for shortcut and only
|
| // updates (recreates) them if they exits.
|
| -void UpdateShortcutForTabContents(TabContentsWrapper* tab_contents);
|
| +void UpdateShortcutForTabContents(TabContents* tab_contents);
|
|
|
| } // namespace web_app
|
|
|
|
|