diff options
author | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-17 20:36:05 +0000 |
---|---|---|
committer | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-17 20:36:05 +0000 |
commit | 6d37714b0e46f65b0418bc3d85f2d296bbbbdfa9 (patch) | |
tree | 33624b0b1e8397835ffec7c05eea03e3067870e0 /chrome/browser/extensions/sandboxed_extension_unpacker.h | |
parent | afbd35400d2a2ab034acb20584092aa71a808e72 (diff) | |
download | chromium_src-6d37714b0e46f65b0418bc3d85f2d296bbbbdfa9.zip chromium_src-6d37714b0e46f65b0418bc3d85f2d296bbbbdfa9.tar.gz chromium_src-6d37714b0e46f65b0418bc3d85f2d296bbbbdfa9.tar.bz2 |
This looks like it was causing the pipe to sometimes overfill.
BUG=38220
TEST=See bug
Review URL: http://codereview.chromium.org/1003004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41873 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/sandboxed_extension_unpacker.h')
-rw-r--r-- | chrome/browser/extensions/sandboxed_extension_unpacker.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/chrome/browser/extensions/sandboxed_extension_unpacker.h b/chrome/browser/extensions/sandboxed_extension_unpacker.h index 9c04c9f..fd44a6a 100644 --- a/chrome/browser/extensions/sandboxed_extension_unpacker.h +++ b/chrome/browser/extensions/sandboxed_extension_unpacker.h @@ -121,8 +121,7 @@ class SandboxedExtensionUnpacker : public UtilityProcessHost::Client { void StartProcessOnIOThread(const FilePath& temp_crx_path); // SandboxedExtensionUnpacker - void OnUnpackExtensionSucceeded(const DictionaryValue& manifest, - const DictionaryValue& catalogs); + void OnUnpackExtensionSucceeded(const DictionaryValue& manifest); void OnUnpackExtensionFailed(const std::string& error_message); void OnProcessCrashed(); @@ -136,7 +135,7 @@ class SandboxedExtensionUnpacker : public UtilityProcessHost::Client { // Overwrites original files with safe results from utility process. // Reports error and returns false if it fails. bool RewriteImageFiles(); - bool RewriteCatalogFiles(const DictionaryValue& parsed_catalogs); + bool RewriteCatalogFiles(); FilePath crx_path_; ChromeThread::ID thread_identifier_; |