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

Unified Diff: content/renderer/renderer_blink_platform_impl.cc

Issue 2536993002: Remove support for the keygen tag (Closed)
Patch Set: Review feedback 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 8295ac864c70d110b334e1333f509a42e3db4b39..b79cb8823bd669be45ef970616de07aa946177ad 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