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

Unified Diff: content/child/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/child/blink_platform_impl.cc
diff --git a/content/child/blink_platform_impl.cc b/content/child/blink_platform_impl.cc
index 008687d00050c9ddafbf147aa3c0a0c3230247b9..34edcedf8b363303447d1ad9a27f842075d862a1 100644
--- a/content/child/blink_platform_impl.cc
+++ b/content/child/blink_platform_impl.cc
@@ -214,10 +214,6 @@ static int ToMessageID(WebLocalizedString::Name name) {
return IDS_FORM_FILE_NO_FILE_LABEL;
case WebLocalizedString::InputElementAltText:
return IDS_FORM_INPUT_ALT;
- case WebLocalizedString::KeygenMenuHighGradeKeySize:
- return IDS_KEYGEN_HIGH_GRADE_KEY;
- case WebLocalizedString::KeygenMenuMediumGradeKeySize:
- return IDS_KEYGEN_MED_GRADE_KEY;
case WebLocalizedString::MissingPluginText:
return IDS_PLUGIN_INITIALIZATION_ERROR;
case WebLocalizedString::MultipleFileUploadText:
@@ -793,14 +789,6 @@ bool BlinkPlatformImpl::databaseSetFileSize(
return false;
}
-blink::WebString BlinkPlatformImpl::signedPublicKeyAndChallengeString(
- unsigned key_size_index,
- const blink::WebString& challenge,
- const blink::WebURL& url,
- const blink::WebURL& top_origin) {
- return blink::WebString("");
-}
-
size_t BlinkPlatformImpl::actualMemoryUsageMB() {
return GetMemoryUsageKB() >> 10;
}

Powered by Google App Engine
This is Rietveld 408576698