diff options
author | craig.schlenter@chromium.org <craig.schlenter@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-19 10:49:32 +0000 |
---|---|---|
committer | craig.schlenter@chromium.org <craig.schlenter@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-19 10:49:32 +0000 |
commit | ccaddf9653bd5ddb1ae1426cfa61572385ed717d (patch) | |
tree | 85aee90c851c260305a09c48ea5d16da59b64fa6 /chrome/common/main_function_params.h | |
parent | a45ca532576fa7241db6c83c018f4ef6378633b1 (diff) | |
download | chromium_src-ccaddf9653bd5ddb1ae1426cfa61572385ed717d.zip chromium_src-ccaddf9653bd5ddb1ae1426cfa61572385ed717d.tar.gz chromium_src-ccaddf9653bd5ddb1ae1426cfa61572385ed717d.tar.bz2 |
Fix a valgrind error related to Zygote's CommandLine usage.
Also touch up some include guards and a comment.
Review URL: http://codereview.chromium.org/131054
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@18801 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/main_function_params.h')
-rw-r--r-- | chrome/common/main_function_params.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/common/main_function_params.h b/chrome/common/main_function_params.h index 1a240c5..b224892 100644 --- a/chrome/common/main_function_params.h +++ b/chrome/common/main_function_params.h @@ -6,8 +6,8 @@ // plugin) to shield the call sites from the differences between platforms // (e.g., POSIX doesn't need to pass any sandbox information). -#ifndef CHROME_COMMON_MAIN_FUNCTINON_PARAMS_H_ -#define CHROME_COMMON_MAIN_FUNCTINON_PARAMS_H_ +#ifndef CHROME_COMMON_MAIN_FUNCTION_PARAMS_H_ +#define CHROME_COMMON_MAIN_FUNCTION_PARAMS_H_ #include "base/command_line.h" #include "chrome/common/sandbox_init_wrapper.h" @@ -30,4 +30,4 @@ struct MainFunctionParams { Task* ui_task; }; -#endif // CHROME_COMMON_MAIN_FUNCTINON_PARAMS_H_ +#endif // CHROME_COMMON_MAIN_FUNCTION_PARAMS_H_ |