Index: chrome/browser/ui/browser_window.h |
diff --git a/chrome/browser/ui/browser_window.h b/chrome/browser/ui/browser_window.h |
index 6780411061757099cb48917cee3ff6c71ec50281..810bf92de001fb3754eb09405d2634f548877edf 100644 |
--- a/chrome/browser/ui/browser_window.h |
+++ b/chrome/browser/ui/browser_window.h |
@@ -36,6 +36,8 @@ namespace views { |
class Window; |
} |
+class Extension; |
+ |
//////////////////////////////////////////////////////////////////////////////// |
// BrowserWindow interface |
// An interface implemented by the "view" of the Browser window. |
@@ -295,7 +297,11 @@ class BrowserWindow { |
virtual void HandleKeyboardEvent(const NativeWebKeyboardEvent& event) = 0; |
// Shows the create web app shortcut dialog box. |
- virtual void ShowCreateShortcutsDialog(TabContents* tab_contents) = 0; |
+ virtual void ShowCreateWebAppShortcutsDialog(TabContents* tab_contents) = 0; |
+ |
+ // Shows the create chrome app shortcut dialog box. |
+ virtual void ShowCreateChromeAppShortcutsDialog(Profile* profile, |
+ const Extension* app) = 0; |
// Clipboard commands applied to the whole browser window. |
virtual void Cut() = 0; |