diff options
author | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-17 06:11:56 +0000 |
---|---|---|
committer | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-17 06:11:56 +0000 |
commit | 5e6e939f429310fb37d00421f728ecba11bc030e (patch) | |
tree | b901d98ca174aadc338a728914c1603c5d277f45 /base/base_switches.h | |
parent | 912c64520e0e9f22bd49e43c7ee102e3b9de66a7 (diff) | |
download | chromium_src-5e6e939f429310fb37d00421f728ecba11bc030e.zip chromium_src-5e6e939f429310fb37d00421f728ecba11bc030e.tar.gz chromium_src-5e6e939f429310fb37d00421f728ecba11bc030e.tar.bz2 |
Add a command line argument to disable message boxes. This is useful to
extension developers who want to package extensions as part of a build script
and aren't there to click the message box.
R=aa,jackson
BUG=14732
TEST=Pack an extension with the --no-message-box flag and notice that there is no message box.
Review URL: http://codereview.chromium.org/149795
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@20937 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/base_switches.h')
-rw-r--r-- | base/base_switches.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/base/base_switches.h b/base/base_switches.h index 97a3691..34c0b0ea 100644 --- a/base/base_switches.h +++ b/base/base_switches.h @@ -16,6 +16,7 @@ extern const wchar_t kFullMemoryCrashReport[]; extern const wchar_t kNoErrorDialogs[]; extern const wchar_t kProcessType[]; extern const wchar_t kEnableDCHECK[]; +extern const wchar_t kNoMessageBox[]; extern const wchar_t kForceHTTPS[]; } // namespace switches |