| Index: chrome/common/main_function_params.h
|
| diff --git a/chrome/common/main_function_params.h b/chrome/common/main_function_params.h
|
| index b8156ae7bc9d3a1a06a789bd5fed8348a6ce7b2d..e3a1c55afdffc9d08ced58462e0d9016dfac3089 100644
|
| --- a/chrome/common/main_function_params.h
|
| +++ b/chrome/common/main_function_params.h
|
| @@ -12,12 +12,10 @@
|
| #include "base/command_line.h"
|
| #include "chrome/common/sandbox_init_wrapper.h"
|
|
|
| -// TODO(pinkerton): |cl| should be const, but can't be due to bug 6144.
|
| -
|
| struct MainFunctionParams {
|
| - MainFunctionParams(CommandLine& cl, const SandboxInitWrapper& sb)
|
| + MainFunctionParams(const CommandLine& cl, const SandboxInitWrapper& sb)
|
| : command_line_(cl), sandbox_info_(sb) { }
|
| - CommandLine& command_line_;
|
| + const CommandLine& command_line_;
|
| const SandboxInitWrapper& sandbox_info_;
|
| };
|
|
|
|
|