Chromium Code Reviews| Index: apps/launcher.h |
| diff --git a/apps/launcher.h b/apps/launcher.h |
| index d41f51780d23876d55147fd3eda1b123bc3aa136..c3035bf6ee59120aab25ba2aeaab955ab4dd5c50 100644 |
| --- a/apps/launcher.h |
| +++ b/apps/launcher.h |
| @@ -6,6 +6,7 @@ |
| #define APPS_LAUNCHER_H_ |
| #include <string> |
| +#include <vector> |
| class GURL; |
| class Profile; |
| @@ -44,10 +45,11 @@ void LaunchPlatformApp(Profile* profile, |
| // |file_path| available through the launch data. |handler_id| corresponds to |
|
benwells
2014/05/28 22:46:14
Nit: comment needs to be updated.
hirono
2014/05/29 04:08:03
Done.
|
| // the id of the file_handlers item in the manifest that resulted in a match |
| // that triggered this launch. |
| -void LaunchPlatformAppWithFileHandler(Profile* profile, |
| - const extensions::Extension* extension, |
| - const std::string& handler_id, |
| - const base::FilePath& file_path); |
| +void LaunchPlatformAppWithFileHandler( |
| + Profile* profile, |
| + const extensions::Extension* extension, |
| + const std::string& handler_id, |
| + const std::vector<base::FilePath>& file_paths); |
| // Launches the platform app |extension| with |handler_id|, |url| and |
| // |referrer_url| available through the launch data. |handler_id| corresponds to |