OLD | NEW |
---|---|
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 APPS_LAUNCHER_H_ | 5 #ifndef APPS_LAUNCHER_H_ |
6 #define APPS_LAUNCHER_H_ | 6 #define APPS_LAUNCHER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 class CommandLine; | 10 class CommandLine; |
11 class GURL; | |
11 class Profile; | 12 class Profile; |
12 | 13 |
13 namespace base { | 14 namespace base { |
14 class FilePath; | 15 class FilePath; |
15 } | 16 } |
16 | 17 |
17 namespace extensions { | 18 namespace extensions { |
18 class Extension; | 19 class Extension; |
19 } | 20 } |
20 | 21 |
21 namespace apps { | 22 namespace apps { |
22 | 23 |
23 // Launches the platform app |extension|. Creates appropriate launch data for | 24 // Launches the platform app |extension|. Creates appropriate launch data for |
24 // the |command_line| fields present. |extension| and |profile| must not be | 25 // the |command_line| fields present. |extension| and |profile| must not be |
25 // NULL. A NULL |command_line| means there is no launch data. If non-empty, | 26 // NULL. A NULL |command_line| means there is no launch data. If non-empty, |
26 // |current_directory| is used to expand any relative paths on the command line. | 27 // |current_directory| is used to expand any relative paths on the command line. |
27 void LaunchPlatformAppWithCommandLine(Profile* profile, | 28 void LaunchPlatformAppWithCommandLine(Profile* profile, |
28 const extensions::Extension* extension, | 29 const extensions::Extension* extension, |
29 const CommandLine* command_line, | 30 const CommandLine* command_line, |
30 const base::FilePath& current_directory); | 31 const base::FilePath& current_directory); |
31 | 32 |
32 // Launches the platform app |extension| with the contents of |file_path| | 33 // Launches the platform app |extension| by issuing an onLaunched event |
33 // available through the launch data. | 34 // with the contents of |file_path| available through the launch data. |
34 void LaunchPlatformAppWithPath(Profile* profile, | 35 void LaunchPlatformAppWithPath(Profile* profile, |
35 const extensions::Extension* extension, | 36 const extensions::Extension* extension, |
36 const base::FilePath& file_path); | 37 const base::FilePath& file_path); |
37 | 38 |
38 // Launches the platform app |extension| with no launch data. | 39 // Launches the platform app |extension| with no launch data. |
39 void LaunchPlatformApp(Profile* profile, | 40 void LaunchPlatformApp(Profile* profile, |
40 const extensions::Extension* extension); | 41 const extensions::Extension* extension); |
41 | 42 |
42 // Launches the platform app |extension| with the contents of |file_path| | 43 // Launches the platform app |extension| with |handler_id| and the contents of |
43 // available through the launch data. | 44 // |file_path| available through the launch data. |handler_id| corresponds to |
45 // the id of the file_handlers item in the manifest that resulted in a match | |
46 // that triggered this launch. | |
44 void LaunchPlatformAppWithFileHandler(Profile* profile, | 47 void LaunchPlatformAppWithFileHandler(Profile* profile, |
45 const extensions::Extension* extension, | 48 const extensions::Extension* extension, |
46 const std::string& handler_id, | 49 const std::string& handler_id, |
47 const base::FilePath& file_path); | 50 const base::FilePath& file_path); |
48 | 51 |
52 // Launches the platform app |extension| with |handler_id|, |url| and | |
53 // |referrer_url| available through the launch data. |handler_id| corresponds to | |
54 // the id of the file_handlers item in the manifest that resulted in a match | |
55 // that triggered this launch. | |
56 void LaunchPlatformAppWithUrl(Profile* profile, | |
57 const extensions::Extension* extension, | |
58 const std::string& handler_id, | |
59 const GURL& url, | |
60 const GURL& referrer_url); | |
61 | |
49 void RestartPlatformApp(Profile* profile, | 62 void RestartPlatformApp(Profile* profile, |
50 const extensions::Extension* extension); | 63 const extensions::Extension* extension); |
51 | |
52 } // namespace apps | 64 } // namespace apps |
benwells
2013/09/09 05:48:39
Nit: restore blank line above.
sergeygs
2013/09/09 09:55:36
Done. Not sure how it disappeared.
| |
53 | 65 |
54 #endif // APPS_LAUNCHER_H_ | 66 #endif // APPS_LAUNCHER_H_ |
OLD | NEW |