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

Unified Diff: chrome/browser/chromeos/login/parallel_authenticator.cc

Issue 5886001: ChromeOS still had some bad RefCounted params to NewRunnableMethod(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 years 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/parallel_authenticator.cc
diff --git a/chrome/browser/chromeos/login/parallel_authenticator.cc b/chrome/browser/chromeos/login/parallel_authenticator.cc
index 6d74bbbdb26a672100e5f5fd983d1c282d393bd0..9cb025cd04012e0ded2fc1cdb91ac507f93268b2 100644
--- a/chrome/browser/chromeos/login/parallel_authenticator.cc
+++ b/chrome/browser/chromeos/login/parallel_authenticator.cc
@@ -226,7 +226,7 @@ void ParallelAuthenticator::RecoverEncryptedData(
BrowserThread::IO, FROM_HERE,
NewRunnableMethod(this,
&ParallelAuthenticator::ResyncRecoverHelper,
- key_migrator_.get()));
+ key_migrator_));
}
void ParallelAuthenticator::ResyncEncryptedData(
@@ -237,7 +237,7 @@ void ParallelAuthenticator::ResyncEncryptedData(
BrowserThread::IO, FROM_HERE,
NewRunnableMethod(this,
&ParallelAuthenticator::ResyncRecoverHelper,
- data_remover_.get()));
+ data_remover_));
}
void ParallelAuthenticator::ResyncRecoverHelper(CryptohomeOp* to_initiate) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698