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

Unified Diff: webkit/api/src/ChromiumBridge.cpp

Issue 261035: Adds support for the <keygen> tag for client certificate enrollment under Lin... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 11 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: webkit/api/src/ChromiumBridge.cpp
===================================================================
--- webkit/api/src/ChromiumBridge.cpp (revision 28911)
+++ webkit/api/src/ChromiumBridge.cpp (working copy)
@@ -382,6 +382,18 @@
webKitClient()->incrementStatsCounter(name);
}
+
+
+// Keygen ---------------------------------------------------------------------
+String ChromiumBridge::genKeyAndSignChallenge(unsigned keySizeIndex,
+ const String& challenge,
+ const KURL& url)
+{
+ return webKitClient()->genKeyAndSignChallenge(keySizeIndex,
+ WebString(challenge),
+ WebURL(url));
+}
+
// Sudden Termination ---------------------------------------------------------
void ChromiumBridge::suddenTerminationChanged(bool enabled)

Powered by Google App Engine
This is Rietveld 408576698