| Index: Source/platform/SSLKeyGenerator.h
|
| diff --git a/Source/core/platform/SSLKeyGenerator.h b/Source/platform/SSLKeyGenerator.h
|
| similarity index 72%
|
| rename from Source/core/platform/SSLKeyGenerator.h
|
| rename to Source/platform/SSLKeyGenerator.h
|
| index b545462b40dd87309cbbaf8ec44a0bac332da44b..2cb57db323561d1032ae2e3728d3426c937fc823 100644
|
| --- a/Source/core/platform/SSLKeyGenerator.h
|
| +++ b/Source/platform/SSLKeyGenerator.h
|
| @@ -26,23 +26,24 @@
|
| #ifndef SSLKeyGenerator_h
|
| #define SSLKeyGenerator_h
|
|
|
| +#include "platform/PlatformExport.h"
|
| #include "wtf/Vector.h"
|
| #include "wtf/text/WTFString.h"
|
|
|
| namespace WebCore {
|
|
|
| - class KURL;
|
| - class Locale;
|
| +class KURL;
|
| +class Locale;
|
|
|
| - // Returns strings representing key sizes that may be used
|
| - // for the <keygen> tag. The first string is displayed as the default
|
| - // key size in the <keygen> menu.
|
| - void getSupportedKeySizes(Locale&, Vector<String>& sizes);
|
| +// Returns strings representing key sizes that may be used
|
| +// for the <keygen> tag. The first string is displayed as the default
|
| +// key size in the <keygen> menu.
|
| +PLATFORM_EXPORT void getSupportedKeySizes(Locale&, Vector<String>& sizes);
|
|
|
| - // This function handles the <keygen> tag in form elements.
|
| - // Returns a signed copy of the combined challenge string and public
|
| - // key (from a newly generated key pair).
|
| - String signedPublicKeyAndChallengeString(unsigned keySizeIndex, const String& challengeString, const KURL&);
|
| +// This function handles the <keygen> tag in form elements.
|
| +// Returns a signed copy of the combined challenge string and public
|
| +// key (from a newly generated key pair).
|
| +PLATFORM_EXPORT String signedPublicKeyAndChallengeString(unsigned keySizeIndex, const String& challengeString, const KURL&);
|
|
|
| } // namespace WebCore
|
|
|
|
|