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

Unified Diff: ios/web/net/crw_cert_verification_controller.mm

Issue 1477643002: Remove the TYPE_WITH_MOVE_CONSTRUCTOR_FOR_CPP_03 macro. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@basepass
Patch Set: type-with-move: no-media Created 5 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 | « ios/web/net/cert_verifier_block_adapter.cc ('k') | ipc/handle_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/web/net/crw_cert_verification_controller.mm
diff --git a/ios/web/net/crw_cert_verification_controller.mm b/ios/web/net/crw_cert_verification_controller.mm
index 85b5a106cbe987609cbf84458ff3c45ad3cc0d9d..8089386882c3bca59937faa7f99a9b034cb30d3d 100644
--- a/ios/web/net/crw_cert_verification_controller.mm
+++ b/ios/web/net/crw_cert_verification_controller.mm
@@ -426,8 +426,8 @@ decideLoadPolicyForAcceptedTrustResult:(SecTrustResultType)trustResult
return;
}
- web::CertVerifierBlockAdapter::Params params(
- blockCert.Pass(), base::SysNSStringToUTF8(host));
+ web::CertVerifierBlockAdapter::Params params(std::move(blockCert),
+ base::SysNSStringToUTF8(host));
params.flags = self.certVerifyFlags;
// OCSP response is not provided by iOS API.
// CRLSets are not used, as the OS is used to make load/no-load
« no previous file with comments | « ios/web/net/cert_verifier_block_adapter.cc ('k') | ipc/handle_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698