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

Unified Diff: net/ssl/openssl_client_key_store_unittest.cc

Issue 2822283002: Remove SSLPrivateKey metadata hooks. (Closed)
Patch Set: emaxx comment Created 3 years, 8 months 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 | « net/socket/ssl_client_socket_impl.cc ('k') | net/ssl/ssl_client_auth_cache_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/ssl/openssl_client_key_store_unittest.cc
diff --git a/net/ssl/openssl_client_key_store_unittest.cc b/net/ssl/openssl_client_key_store_unittest.cc
index 52cea2ff18c8f6b4580032af957dec6a6bf86fa5..160769bdf03b33db8e16305bc48a37c4177da8d6 100644
--- a/net/ssl/openssl_client_key_store_unittest.cc
+++ b/net/ssl/openssl_client_key_store_unittest.cc
@@ -38,21 +38,11 @@ class MockSSLPrivateKey : public SSLPrivateKey {
void set_on_destroyed(bool* on_destroyed) { on_destroyed_ = on_destroyed; }
- Type GetType() override {
- NOTREACHED();
- return Type::RSA;
- }
-
std::vector<Hash> GetDigestPreferences() override {
NOTREACHED();
return {};
}
- size_t GetMaxSignatureLengthInBytes() override {
- NOTREACHED();
- return 0;
- }
-
void SignDigest(Hash hash,
const base::StringPiece& input,
const SignCallback& callback) override {
« no previous file with comments | « net/socket/ssl_client_socket_impl.cc ('k') | net/ssl/ssl_client_auth_cache_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698