summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwillchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-15 09:05:44 +0000
committerwillchan@chromium.org <willchan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-12-15 09:05:44 +0000
commitca3a0d33d8d57523a2e499fbf4476a3bf13df59c (patch)
treefe4f332f054a99bc10b9d781f0723adabd0055d8
parent3b02cb018e84740ad105ad99c63abd1d0853fe58 (diff)
downloadchromium_src-ca3a0d33d8d57523a2e499fbf4476a3bf13df59c.zip
chromium_src-ca3a0d33d8d57523a2e499fbf4476a3bf13df59c.tar.gz
chromium_src-ca3a0d33d8d57523a2e499fbf4476a3bf13df59c.tar.bz2
ChromeOS still had some bad RefCounted params to NewRunnableMethod().
BUG=28083 TEST=builds Review URL: http://codereview.chromium.org/5886001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69242 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--chrome/browser/chromeos/login/parallel_authenticator.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/chromeos/login/parallel_authenticator.cc b/chrome/browser/chromeos/login/parallel_authenticator.cc
index 6d74bbb..9cb025c 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) {