| OLD | NEW |
| 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 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 375 void ChromiumBridge::decrementStatsCounter(const char* name) | 375 void ChromiumBridge::decrementStatsCounter(const char* name) |
| 376 { | 376 { |
| 377 webKitClient()->decrementStatsCounter(name); | 377 webKitClient()->decrementStatsCounter(name); |
| 378 } | 378 } |
| 379 | 379 |
| 380 void ChromiumBridge::incrementStatsCounter(const char* name) | 380 void ChromiumBridge::incrementStatsCounter(const char* name) |
| 381 { | 381 { |
| 382 webKitClient()->incrementStatsCounter(name); | 382 webKitClient()->incrementStatsCounter(name); |
| 383 } | 383 } |
| 384 | 384 |
| 385 |
| 386 |
| 387 // Keygen --------------------------------------------------------------------- |
| 388 String ChromiumBridge::genKeyAndSignChallenge(unsigned keySizeIndex, |
| 389 const String& challenge, |
| 390 const KURL& url) |
| 391 { |
| 392 return webKitClient()->genKeyAndSignChallenge(keySizeIndex, |
| 393 WebString(challenge), |
| 394 WebURL(url)); |
| 395 } |
| 396 |
| 385 // Sudden Termination --------------------------------------------------------- | 397 // Sudden Termination --------------------------------------------------------- |
| 386 | 398 |
| 387 void ChromiumBridge::suddenTerminationChanged(bool enabled) | 399 void ChromiumBridge::suddenTerminationChanged(bool enabled) |
| 388 { | 400 { |
| 389 webKitClient()->suddenTerminationChanged(enabled); | 401 webKitClient()->suddenTerminationChanged(enabled); |
| 390 } | 402 } |
| 391 | 403 |
| 392 // SystemTime ----------------------------------------------------------------- | 404 // SystemTime ----------------------------------------------------------------- |
| 393 | 405 |
| 394 double ChromiumBridge::currentTime() | 406 double ChromiumBridge::currentTime() |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 580 { | 592 { |
| 581 return webKitClient()->widgetSetFocus(widget); | 593 return webKitClient()->widgetSetFocus(widget); |
| 582 } | 594 } |
| 583 | 595 |
| 584 WorkerContextProxy* WorkerContextProxy::create(Worker* worker) | 596 WorkerContextProxy* WorkerContextProxy::create(Worker* worker) |
| 585 { | 597 { |
| 586 return webKitClient()->createWorkerContextProxy(worker); | 598 return webKitClient()->createWorkerContextProxy(worker); |
| 587 } | 599 } |
| 588 | 600 |
| 589 } // namespace WebCore | 601 } // namespace WebCore |
| OLD | NEW |