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

Unified Diff: components/webcrypto/algorithms/rsa_oaep_unittest.cc

Issue 1548203002: Convert Pass()→std::move() in //components/[n-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix bad headers 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 | « components/webcrypto/algorithms/rsa.cc ('k') | components/webcrypto/blink_key_handle.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/webcrypto/algorithms/rsa_oaep_unittest.cc
diff --git a/components/webcrypto/algorithms/rsa_oaep_unittest.cc b/components/webcrypto/algorithms/rsa_oaep_unittest.cc
index de1d66fd4966c7ca277a4d2d8c59a6077a02498f..05f7e953f4502cd8532af30a074b02ed18a82e02 100644
--- a/components/webcrypto/algorithms/rsa_oaep_unittest.cc
+++ b/components/webcrypto/algorithms/rsa_oaep_unittest.cc
@@ -49,7 +49,7 @@ scoped_ptr<base::DictionaryValue> CreatePublicKeyJwkDict() {
Base64EncodeUrlSafe(HexStringToBytes(kPublicKeyModulusHex)));
jwk->SetString("e",
Base64EncodeUrlSafe(HexStringToBytes(kPublicKeyExponentHex)));
- return jwk.Pass();
+ return jwk;
}
class WebCryptoRsaOaepTest : public WebCryptoTestBase {};
« no previous file with comments | « components/webcrypto/algorithms/rsa.cc ('k') | components/webcrypto/blink_key_handle.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698