summaryrefslogtreecommitdiffstats
path: root/chromeos
diff options
context:
space:
mode:
authordcheng <dcheng@chromium.org>2016-03-03 17:21:47 -0800
committerCommit bot <commit-bot@chromium.org>2016-03-04 01:23:46 +0000
commit7061e5f12cbc184bef9349ef7c2b68634a863147 (patch)
tree84213f91b1095257a1f0cab735d6be9c165f8b5c /chromeos
parentee8bc708fdfe52c34d39f5cc9a8407fe9cfb459c (diff)
downloadchromium_src-7061e5f12cbc184bef9349ef7c2b68634a863147.zip
chromium_src-7061e5f12cbc184bef9349ef7c2b68634a863147.tar.gz
chromium_src-7061e5f12cbc184bef9349ef7c2b68634a863147.tar.bz2
Remove Pass() helper from base/move.h.
Also fix some comments that refer to the old Pass() helper. BUG=557422 TBR=darin@chromium.org Review URL: https://codereview.chromium.org/1759223002 Cr-Commit-Position: refs/heads/master@{#379162}
Diffstat (limited to 'chromeos')
-rw-r--r--chromeos/attestation/attestation_flow.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/chromeos/attestation/attestation_flow.h b/chromeos/attestation/attestation_flow.h
index a5ced3c..7dd575b 100644
--- a/chromeos/attestation/attestation_flow.h
+++ b/chromeos/attestation/attestation_flow.h
@@ -46,7 +46,7 @@ class CHROMEOS_EXPORT ServerProxy {
// and the Chrome OS Privacy CA server. Sample usage:
// AttestationFlow flow(AsyncMethodCaller::GetInstance(),
// DBusThreadManager::Get().GetCryptohomeClient(),
-// my_server_proxy.Pass());
+// std::move(my_server_proxy));
// AttestationFlow::CertificateCallback callback = base::Bind(&MyCallback);
// flow.GetCertificate(ENTERPRISE_USER_CERTIFICATE, false, callback);
class CHROMEOS_EXPORT AttestationFlow {