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

Side by Side Diff: webkit/api/src/ChromiumBridge.cpp

Issue 271112: Adds support for the <keygen> tag for client certificate enrollment... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Upload before checkin 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « webkit/api/public/WebKitClient.h ('k') | webkit/glue/webkitclient_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 { 262 {
263 return webKitClient()->databaseGetFileSize(WebString(fileName)); 263 return webKitClient()->databaseGetFileSize(WebString(fileName));
264 } 264 }
265 #endif 265 #endif
266 266
267 // Keygen --------------------------------------------------------------------- 267 // Keygen ---------------------------------------------------------------------
268 268
269 String ChromiumBridge::signedPublicKeyAndChallengeString( 269 String ChromiumBridge::signedPublicKeyAndChallengeString(
270 unsigned keySizeIndex, const String& challenge, const KURL& url) 270 unsigned keySizeIndex, const String& challenge, const KURL& url)
271 { 271 {
272 notImplemented(); 272 return webKitClient()->signedPublicKeyAndChallengeString(keySizeIndex,
273 return String(); 273 WebString(challenge),
274 WebURL(url));
274 } 275 }
275 276
276 // Language ------------------------------------------------------------------- 277 // Language -------------------------------------------------------------------
277 278
278 String ChromiumBridge::computedDefaultLanguage() 279 String ChromiumBridge::computedDefaultLanguage()
279 { 280 {
280 return webKitClient()->defaultLocale(); 281 return webKitClient()->defaultLocale();
281 } 282 }
282 283
283 // LayoutTestMode ------------------------------------------------------------- 284 // LayoutTestMode -------------------------------------------------------------
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after
591 { 592 {
592 return webKitClient()->widgetSetFocus(widget); 593 return webKitClient()->widgetSetFocus(widget);
593 } 594 }
594 595
595 WorkerContextProxy* WorkerContextProxy::create(Worker* worker) 596 WorkerContextProxy* WorkerContextProxy::create(Worker* worker)
596 { 597 {
597 return webKitClient()->createWorkerContextProxy(worker); 598 return webKitClient()->createWorkerContextProxy(worker);
598 } 599 }
599 600
600 } // namespace WebCore 601 } // namespace WebCore
OLDNEW
« no previous file with comments | « webkit/api/public/WebKitClient.h ('k') | webkit/glue/webkitclient_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698