diff options
author | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-24 22:14:23 +0000 |
---|---|---|
committer | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-24 22:14:23 +0000 |
commit | cc02d035d6fbb07380d13cb127cdda56309b38fd (patch) | |
tree | 1b2248b63295deaa11b546cdf950d4b987d1d2ca /chrome/common | |
parent | 37dacc8451d6670121a3f62879f040ebd4f64f25 (diff) | |
download | chromium_src-cc02d035d6fbb07380d13cb127cdda56309b38fd.zip chromium_src-cc02d035d6fbb07380d13cb127cdda56309b38fd.tar.gz chromium_src-cc02d035d6fbb07380d13cb127cdda56309b38fd.tar.bz2 |
Fix extension unpacking on linux/mac
Add a unittest that pretends to be the UtilityProcessHost and launches a chrome utility process for unpacking a theme.
Review URL: http://codereview.chromium.org/147001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19181 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/chrome_switches.cc | 7 | ||||
-rw-r--r-- | chrome/common/chrome_switches.h | 2 |
2 files changed, 8 insertions, 1 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index b7c03b1..fbb4497 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -424,9 +424,14 @@ const wchar_t kEnableRendererAccessibility[] = L"enable-renderer-accessibility"; const wchar_t kTestName[] = L"test-name"; // On POSIX only: the contents of this flag are prepended to the renderer -// command line. (Useful values might be "valgrind" or "gdb --args") +// command line. Useful values might be "valgrind" or "xterm -e gdb --args". const wchar_t kRendererCmdPrefix[] = L"renderer-cmd-prefix"; +// On POSIX only: the contents of this flag are prepended to the utility +// process command line. Useful values might be "valgrind" or "xterm -e gdb +// --args". +const wchar_t kUtilityCmdPrefix[] = L"utility-cmd-prefix"; + // Temparary option for new ftp implemetation. const wchar_t kNewFtp[] = L"new-ftp"; diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h index fa10386..98c9601 100644 --- a/chrome/common/chrome_switches.h +++ b/chrome/common/chrome_switches.h @@ -157,6 +157,8 @@ extern const wchar_t kTestName[]; extern const wchar_t kRendererCmdPrefix[]; +extern const wchar_t kUtilityCmdPrefix[]; + extern const wchar_t kNewFtp[]; extern const wchar_t kIPCUseFIFO[]; |