Chromium Code Reviews| Index: chrome/browser/ui/extensions/application_launch.h |
| diff --git a/chrome/browser/ui/extensions/application_launch.h b/chrome/browser/ui/extensions/application_launch.h |
| index 630f9e9d7a9e9cfc0c093e8cdaaad050c996bcbc..ec9c4deca6e235db89dbb39485067aacb4f52375 100644 |
| --- a/chrome/browser/ui/extensions/application_launch.h |
| +++ b/chrome/browser/ui/extensions/application_launch.h |
| @@ -5,6 +5,7 @@ |
| #ifndef CHROME_BROWSER_UI_EXTENSIONS_APPLICATION_LAUNCH_H_ |
| #define CHROME_BROWSER_UI_EXTENSIONS_APPLICATION_LAUNCH_H_ |
| +#include "base/command_line.h" |
| #include "base/files/file_path.h" |
| #include "chrome/browser/ui/host_desktop.h" |
| #include "chrome/common/extensions/extension_constants.h" |
| @@ -49,7 +50,7 @@ struct AppLaunchParams { |
| Profile* profile; |
| // The extension to load. |
| - const extensions::Extension* extension; |
| + std::string extension_id; |
| // The container type to launch the application in. |
| extensions::LaunchContainer container; |
| @@ -69,7 +70,7 @@ struct AppLaunchParams { |
| // If non-NULL, information from the command line may be passed on to the |
|
tapted
2013/12/13 03:10:58
nit: update comment (re: non-NULL)
koz (OOO until 15th September)
2013/12/13 03:54:42
Done.
|
| // application. |
| - const CommandLine* command_line; |
| + CommandLine command_line; |
| // If non-empty, the current directory from which any relative paths on the |
| // command line should be expanded from. |