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

Unified Diff: Source/platform/SSLKeyGenerator.h

Issue 26113002: Move core/platform/text/Locale* to platform/text (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/modules/webaudio/OfflineAudioDestinationNode.cpp ('k') | Source/platform/SSLKeyGenerator.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « Source/modules/webaudio/OfflineAudioDestinationNode.cpp ('k') | Source/platform/SSLKeyGenerator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698