OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_UI_EXTENSIONS_APPLICATION_LAUNCH_H_ | 5 #ifndef CHROME_BROWSER_UI_EXTENSIONS_APP_LAUNCH_PARAMS_H_ |
6 #define CHROME_BROWSER_UI_EXTENSIONS_APPLICATION_LAUNCH_H_ | 6 #define CHROME_BROWSER_UI_EXTENSIONS_APP_LAUNCH_PARAMS_H_ |
| 7 |
| 8 #include <string> |
7 | 9 |
8 #include "base/command_line.h" | 10 #include "base/command_line.h" |
9 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
10 #include "chrome/browser/ui/host_desktop.h" | 12 #include "chrome/browser/ui/host_desktop.h" |
11 #include "chrome/common/extensions/extension_constants.h" | 13 #include "chrome/common/extensions/extension_constants.h" |
12 #include "ui/base/window_open_disposition.h" | 14 #include "ui/base/window_open_disposition.h" |
13 #include "ui/gfx/rect.h" | 15 #include "ui/gfx/rect.h" |
14 #include "url/gurl.h" | 16 #include "url/gurl.h" |
15 | 17 |
16 class Browser; | |
17 class Profile; | 18 class Profile; |
18 | 19 |
19 namespace base { | |
20 class CommandLine; | |
21 } | |
22 | |
23 namespace content { | |
24 class WebContents; | |
25 } | |
26 | |
27 namespace extensions { | 20 namespace extensions { |
28 class Extension; | 21 class Extension; |
29 } | 22 } |
30 | 23 |
31 struct AppLaunchParams { | 24 struct AppLaunchParams { |
32 AppLaunchParams(Profile* profile, | 25 AppLaunchParams(Profile* profile, |
33 const extensions::Extension* extension, | 26 const extensions::Extension* extension, |
34 extensions::LaunchContainer container, | 27 extensions::LaunchContainer container, |
35 WindowOpenDisposition disposition); | 28 WindowOpenDisposition disposition); |
36 | 29 |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 | 68 |
76 // If non-empty, information from the command line may be passed on to the | 69 // If non-empty, information from the command line may be passed on to the |
77 // application. | 70 // application. |
78 base::CommandLine command_line; | 71 base::CommandLine command_line; |
79 | 72 |
80 // If non-empty, the current directory from which any relative paths on the | 73 // If non-empty, the current directory from which any relative paths on the |
81 // command line should be expanded from. | 74 // command line should be expanded from. |
82 base::FilePath current_directory; | 75 base::FilePath current_directory; |
83 }; | 76 }; |
84 | 77 |
85 // Opens the application, possibly prompting the user to re-enable it. | 78 #endif // CHROME_BROWSER_UI_EXTENSIONS_APP_LAUNCH_PARAMS_H_ |
86 void OpenApplicationWithReenablePrompt(const AppLaunchParams& params); | |
87 | |
88 // Open the application in a way specified by |params|. | |
89 content::WebContents* OpenApplication(const AppLaunchParams& params); | |
90 | |
91 // Open |url| in an app shortcut window. | |
92 // There are two kinds of app shortcuts: Shortcuts to a URL, | |
93 // and shortcuts that open an installed application. This function | |
94 // is used to open the former. To open the latter, use | |
95 // application_launch::OpenApplication(). | |
96 content::WebContents* OpenAppShortcutWindow(Profile* profile, | |
97 const GURL& url); | |
98 | |
99 // Whether the extension can be launched by sending a | |
100 // chrome.app.runtime.onLaunched event. | |
101 bool CanLaunchViaEvent(const extensions::Extension* extension); | |
102 | |
103 // Get the launch URL for a given extension, with optional override/fallback. | |
104 // |override_url|, if non-empty, will be preferred over the extension's | |
105 // launch url. | |
106 GURL UrlForExtension(const extensions::Extension* extension, | |
107 const GURL& override_url); | |
108 | |
109 #endif // CHROME_BROWSER_UI_EXTENSIONS_APPLICATION_LAUNCH_H_ | |
OLD | NEW |