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

Unified Diff: Source/platform/SSLKeyGenerator.cpp

Issue 61773005: Rename WebKit namespace to blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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/platform/PurgeableBuffer.cpp ('k') | Source/platform/SharedTimer.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/SSLKeyGenerator.cpp
diff --git a/Source/platform/SSLKeyGenerator.cpp b/Source/platform/SSLKeyGenerator.cpp
index d3fedba8fca7fea05888d1d722021e414c27fb9d..573e694896b36940dc58446a2cae13b85188d938 100644
--- a/Source/platform/SSLKeyGenerator.cpp
+++ b/Source/platform/SSLKeyGenerator.cpp
@@ -42,13 +42,13 @@ namespace WebCore {
void getSupportedKeySizes(Locale& locale, Vector<String>& sizes)
{
sizes.resize(2);
- sizes[0] = locale.queryString(WebKit::WebLocalizedString::KeygenMenuHighGradeKeySize);
- sizes[1] = locale.queryString(WebKit::WebLocalizedString::KeygenMenuMediumGradeKeySize);
+ sizes[0] = locale.queryString(blink::WebLocalizedString::KeygenMenuHighGradeKeySize);
+ sizes[1] = locale.queryString(blink::WebLocalizedString::KeygenMenuMediumGradeKeySize);
}
String signedPublicKeyAndChallengeString(unsigned keySizeIndex, const String& challengeString, const KURL& url)
{
- return WebKit::Platform::current()->signedPublicKeyAndChallengeString(keySizeIndex, WebKit::WebString(challengeString), WebKit::WebURL(url));
+ return blink::Platform::current()->signedPublicKeyAndChallengeString(keySizeIndex, blink::WebString(challengeString), blink::WebURL(url));
}
} // namespace WebCore
« no previous file with comments | « Source/platform/PurgeableBuffer.cpp ('k') | Source/platform/SharedTimer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698