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

Unified Diff: Source/core/platform/chromium/support/WebCrypto.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
Index: Source/core/platform/chromium/support/WebCrypto.cpp
diff --git a/Source/core/platform/chromium/support/WebCrypto.cpp b/Source/core/platform/chromium/support/WebCrypto.cpp
index 0d58262ec00e7bf57e41b1174ad6ad1499d7cbf4..3fd68afd82af45ac5795e7ff700004b077e65f99 100644
--- a/Source/core/platform/chromium/support/WebCrypto.cpp
+++ b/Source/core/platform/chromium/support/WebCrypto.cpp
@@ -35,7 +35,7 @@
#include "public/platform/WebArrayBuffer.h"
#include <string.h>
-namespace WebKit {
+namespace blink {
void WebCryptoResult::completeWithError()
{
@@ -52,7 +52,7 @@ void WebCryptoResult::completeWithBuffer(const WebArrayBuffer& buffer)
void WebCryptoResult::completeWithBuffer(const void* bytes, unsigned bytesSize)
{
- WebArrayBuffer buffer = WebKit::WebArrayBuffer::create(bytesSize, 1);
+ WebArrayBuffer buffer = blink::WebArrayBuffer::create(bytesSize, 1);
RELEASE_ASSERT(!buffer.isNull());
memcpy(buffer.data(), bytes, bytesSize);
completeWithBuffer(buffer);
@@ -95,4 +95,4 @@ void WebCryptoResult::assign(const WebCryptoResult& o)
m_impl = o.m_impl;
}
-} // namespace WebKit
+} // namespace blink
« no previous file with comments | « Source/core/platform/chromium/support/WebArrayBuffer.cpp ('k') | Source/core/platform/chromium/support/WebCursorInfo.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698