summaryrefslogtreecommitdiffstats
path: root/WebCore/platform/android/SSLKeyGeneratorAndroid.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/platform/android/SSLKeyGeneratorAndroid.cpp')
-rw-r--r--WebCore/platform/android/SSLKeyGeneratorAndroid.cpp18
1 files changed, 4 insertions, 14 deletions
diff --git a/WebCore/platform/android/SSLKeyGeneratorAndroid.cpp b/WebCore/platform/android/SSLKeyGeneratorAndroid.cpp
index 0279909..287d5c4 100644
--- a/WebCore/platform/android/SSLKeyGeneratorAndroid.cpp
+++ b/WebCore/platform/android/SSLKeyGeneratorAndroid.cpp
@@ -23,31 +23,21 @@
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-
#include "config.h"
#include "SSLKeyGenerator.h"
-#include "JavaSharedClient.h"
-#include "KeyGeneratorClient.h"
+#include "PlatformBridge.h"
namespace WebCore {
void getSupportedKeySizes(Vector<String>& keys)
{
- if (android::JavaSharedClient::GetKeyGeneratorClient()) {
- keys = android::JavaSharedClient::GetKeyGeneratorClient()->
- getSupportedKeyStrengthList();
- }
+ keys = PlatformBridge::getSupportedKeyStrengthList();
}
-String signedPublicKeyAndChallengeString(unsigned index,
- const String& challenge, const KURL& url)
+String signedPublicKeyAndChallengeString(unsigned index, const String& challenge, const KURL& url)
{
- if (android::JavaSharedClient::GetKeyGeneratorClient()) {
- return android::JavaSharedClient::GetKeyGeneratorClient()->
- getSignedPublicKeyAndChallengeString(index, challenge, url);
- }
- return String();
+ return PlatformBridge::getSignedPublicKeyAndChallengeString(index, challenge, url);
}
}