diff options
author | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-06 07:47:12 +0000 |
---|---|---|
committer | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-01-06 07:47:12 +0000 |
commit | 2102dfca368947f67ca224accc9868447b3da2a0 (patch) | |
tree | c54964bade604a16de9c5660bfcf41daf97384a7 /chrome/app/chrome_dll_main.cc | |
parent | 34acadd501bf6f49b961aa4d369ae863171e71f5 (diff) | |
download | chromium_src-2102dfca368947f67ca224accc9868447b3da2a0.zip chromium_src-2102dfca368947f67ca224accc9868447b3da2a0.tar.gz chromium_src-2102dfca368947f67ca224accc9868447b3da2a0.tar.bz2 |
Reland: Add a minimum_chrome_version key to the manifest.
BUG=24737
TBR=mpcomplete@chromium.org
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@35618 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app/chrome_dll_main.cc')
-rw-r--r-- | chrome/app/chrome_dll_main.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/app/chrome_dll_main.cc b/chrome/app/chrome_dll_main.cc index b47c82e..8ef4314 100644 --- a/chrome/app/chrome_dll_main.cc +++ b/chrome/app/chrome_dll_main.cc @@ -352,7 +352,8 @@ bool SubprocessNeedsResourceBundle(const std::string& process_type) { process_type == switches::kZygoteProcess || #endif process_type == switches::kRendererProcess || - process_type == switches::kExtensionProcess; + process_type == switches::kExtensionProcess || + process_type == switches::kUtilityProcess; } } // namespace |