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

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

Issue 436008: Fixes extension packing codepath that was hitting a race condition DCHECK des... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 11 years, 1 month 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
« no previous file with comments | « chrome/browser/extensions/pack_extension_job.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/extensions/pack_extension_job.cc
===================================================================
--- chrome/browser/extensions/pack_extension_job.cc (revision 32804)
+++ chrome/browser/extensions/pack_extension_job.cc (working copy)
@@ -14,6 +14,9 @@
const FilePath& key_file)
: client_(client), root_directory_(root_directory), key_file_(key_file) {
CHECK(ChromeThread::GetCurrentThreadIdentifier(&client_thread_id_));
+}
+
+void PackExtensionJob::Start() {
ChromeThread::PostTask(
ChromeThread::FILE, FROM_HERE,
NewRunnableMethod(this, &PackExtensionJob::RunOnFileThread));
« no previous file with comments | « chrome/browser/extensions/pack_extension_job.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698