Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3419)

Unified Diff: chrome/browser/extensions/sandboxed_extension_unpacker.cc

Issue 6805008: Remove RDH from UtilityProcessHost. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Oops, can only use g_browser_process on the UI thread. Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/sandboxed_extension_unpacker.cc
diff --git a/chrome/browser/extensions/sandboxed_extension_unpacker.cc b/chrome/browser/extensions/sandboxed_extension_unpacker.cc
index 8b42d5e2bfb9ab5aea5ac9b98986cf6c946ea2d4..6c417079e1bc030c2be99669b76afee4613e0705 100644
--- a/chrome/browser/extensions/sandboxed_extension_unpacker.cc
+++ b/chrome/browser/extensions/sandboxed_extension_unpacker.cc
@@ -146,8 +146,7 @@ SandboxedExtensionUnpacker::~SandboxedExtensionUnpacker() {
void SandboxedExtensionUnpacker::StartProcessOnIOThread(
const FilePath& temp_crx_path) {
- UtilityProcessHost* host = new UtilityProcessHost(
- rdh_, this, thread_identifier_);
+ UtilityProcessHost* host = new UtilityProcessHost(this, thread_identifier_);
host->StartExtensionUnpacker(temp_crx_path);
}

Powered by Google App Engine
This is Rietveld 408576698