Chromium Code Reviews| Index: components/crash/content/app/run_as_crashpad_handler_win.h |
| diff --git a/components/crash/content/app/run_as_crashpad_handler_win.h b/components/crash/content/app/run_as_crashpad_handler_win.h |
| index ade72a01db994c80bdd0c50eba7cc7d22522c980..cfacb81efffaee84e1c3c9b74593751d4b714523 100644 |
| --- a/components/crash/content/app/run_as_crashpad_handler_win.h |
| +++ b/components/crash/content/app/run_as_crashpad_handler_win.h |
| @@ -5,6 +5,8 @@ |
| #ifndef COMPONENTS_CRASH_CONTENT_APP_RUN_AS_CRASHPAD_HANDLER_WIN_H_ |
| #define COMPONENTS_CRASH_CONTENT_APP_RUN_AS_CRASHPAD_HANDLER_WIN_H_ |
| +#include "base/files/file_path.h" |
| + |
| namespace base { |
| class CommandLine; |
| } |
| @@ -20,7 +22,9 @@ namespace crash_reporter { |
| // as a parameter because this component does not have access to content/, where |
| // that variable lives. |
| int RunAsCrashpadHandler(const base::CommandLine& command_line, |
| - const char* process_type_switch); |
| + const base::FilePath& user_data_dir, |
|
grt (UTC plus 2)
2017/05/22 10:16:12
nit: forward declare FilePath rather than includin
grt (UTC plus 2)
2017/05/22 10:16:12
please document new args
manzagop (departed)
2017/05/23 14:59:14
Done.
manzagop (departed)
2017/05/23 14:59:14
Done.
|
| + const char* process_type_switch, |
| + const char* user_data_dir_switch); |
| } // namespace crash_reporter |