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

Unified Diff: content/renderer/renderer_blink_platform_impl.cc

Issue 2536993002: Remove support for the keygen tag (Closed)
Patch Set: Rebased Created 4 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
Index: content/renderer/renderer_blink_platform_impl.cc
diff --git a/content/renderer/renderer_blink_platform_impl.cc b/content/renderer/renderer_blink_platform_impl.cc
index 2155b6fe23efe6bff2e992fb1c45616e5c3f3a90..bcee0b0e0943bf72ef7d44252ac1e8e6db22bf3b 100644
--- a/content/renderer/renderer_blink_platform_impl.cc
+++ b/content/renderer/renderer_blink_platform_impl.cc
@@ -783,20 +783,6 @@ blink::WebPublicSuffixList* RendererBlinkPlatformImpl::publicSuffixList() {
//------------------------------------------------------------------------------
-blink::WebString RendererBlinkPlatformImpl::signedPublicKeyAndChallengeString(
- unsigned key_size_index,
- const blink::WebString& challenge,
- const blink::WebURL& url,
- const blink::WebURL& top_origin) {
- std::string signed_public_key;
- RenderThread::Get()->Send(new RenderProcessHostMsg_Keygen(
- static_cast<uint32_t>(key_size_index), challenge.utf8(), GURL(url),
- GURL(top_origin), &signed_public_key));
- return WebString::fromUTF8(signed_public_key);
-}
-
-//------------------------------------------------------------------------------
-
blink::WebScrollbarBehavior* RendererBlinkPlatformImpl::scrollbarBehavior() {
return web_scrollbar_behavior_.get();
}

Powered by Google App Engine
This is Rietveld 408576698