| Index: Source/platform/SSLKeyGenerator.cpp
|
| diff --git a/Source/core/platform/chromium/SSLKeyGeneratorChromium.cpp b/Source/platform/SSLKeyGenerator.cpp
|
| similarity index 87%
|
| rename from Source/core/platform/chromium/SSLKeyGeneratorChromium.cpp
|
| rename to Source/platform/SSLKeyGenerator.cpp
|
| index 065f0668cd2d5620fceccae6eee4e15f91dec7cd..d3fedba8fca7fea05888d1d722021e414c27fb9d 100644
|
| --- a/Source/core/platform/chromium/SSLKeyGeneratorChromium.cpp
|
| +++ b/Source/platform/SSLKeyGenerator.cpp
|
| @@ -29,9 +29,9 @@
|
| */
|
|
|
| #include "config.h"
|
| -#include "core/platform/SSLKeyGenerator.h"
|
| +#include "platform/SSLKeyGenerator.h"
|
|
|
| -#include "core/platform/text/PlatformLocale.h"
|
| +#include "platform/text/PlatformLocale.h"
|
| #include "public/platform/Platform.h"
|
| #include "public/platform/WebString.h"
|
| #include "public/platform/WebURL.h"
|
| @@ -48,9 +48,7 @@ void getSupportedKeySizes(Locale& locale, Vector<String>& sizes)
|
|
|
| String signedPublicKeyAndChallengeString(unsigned keySizeIndex, const String& challengeString, const KURL& url)
|
| {
|
| - return WebKit::Platform::current()->signedPublicKeyAndChallengeString(keySizeIndex,
|
| - WebKit::WebString(challengeString),
|
| - WebKit::WebURL(url));
|
| + return WebKit::Platform::current()->signedPublicKeyAndChallengeString(keySizeIndex, WebKit::WebString(challengeString), WebKit::WebURL(url));
|
| }
|
|
|
| } // namespace WebCore
|
|
|