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

Unified Diff: extensions/browser/api/cast_channel/cast_auth_util_openssl.cc

Issue 627573002: Enable passing cast channel certificate authority keys. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added SetTrustedCerificateAuthorities stub to cast_auth_util_openssl and rebased. Created 6 years, 2 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
Index: extensions/browser/api/cast_channel/cast_auth_util_openssl.cc
diff --git a/extensions/browser/api/cast_channel/cast_auth_util_openssl.cc b/extensions/browser/api/cast_channel/cast_auth_util_openssl.cc
index 3ebceed1f107a848a36cfdeb2424c08e2592e85e..9bbd2e0bb21eba4ce71b7b439ff8c0db205c8ae9 100644
--- a/extensions/browser/api/cast_channel/cast_auth_util_openssl.cc
+++ b/extensions/browser/api/cast_channel/cast_auth_util_openssl.cc
@@ -16,6 +16,12 @@ AuthResult AuthenticateChallengeReply(const CastMessage& challenge_reply,
return AuthResult();
}
+bool SetTrustedCertificateAuthorities(const std::string& keys,
+ const std::string& signature) {
+ NOTREACHED();
Ken Rockot(use gerrit already) 2014/10/27 17:17:50 Why is this not reached? Clearly it's being linked
vadimgo 2014/10/27 17:29:54 Talking to Doug, only the nss version is used for
+ return false;
+}
+
} // namespace cast_channel
} // namespace core_api
} // namespace extensions

Powered by Google App Engine
This is Rietveld 408576698