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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 17 matching lines...) Expand all
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #include "config.h" 31 #include "config.h"
32 #include "public/platform/WebCrypto.h" 32 #include "public/platform/WebCrypto.h"
33 33
34 #include "core/platform/CryptoResult.h" 34 #include "core/platform/CryptoResult.h"
35 #include "public/platform/WebArrayBuffer.h" 35 #include "public/platform/WebArrayBuffer.h"
36 #include <string.h> 36 #include <string.h>
37 37
38 namespace WebKit { 38 namespace blink {
39 39
40 void WebCryptoResult::completeWithError() 40 void WebCryptoResult::completeWithError()
41 { 41 {
42 m_impl->completeWithError(); 42 m_impl->completeWithError();
43 reset(); 43 reset();
44 } 44 }
45 45
46 void WebCryptoResult::completeWithBuffer(const WebArrayBuffer& buffer) 46 void WebCryptoResult::completeWithBuffer(const WebArrayBuffer& buffer)
47 { 47 {
48 RELEASE_ASSERT(!buffer.isNull()); 48 RELEASE_ASSERT(!buffer.isNull());
49 m_impl->completeWithBuffer(buffer); 49 m_impl->completeWithBuffer(buffer);
50 reset(); 50 reset();
51 } 51 }
52 52
53 void WebCryptoResult::completeWithBuffer(const void* bytes, unsigned bytesSize) 53 void WebCryptoResult::completeWithBuffer(const void* bytes, unsigned bytesSize)
54 { 54 {
55 WebArrayBuffer buffer = WebKit::WebArrayBuffer::create(bytesSize, 1); 55 WebArrayBuffer buffer = blink::WebArrayBuffer::create(bytesSize, 1);
56 RELEASE_ASSERT(!buffer.isNull()); 56 RELEASE_ASSERT(!buffer.isNull());
57 memcpy(buffer.data(), bytes, bytesSize); 57 memcpy(buffer.data(), bytes, bytesSize);
58 completeWithBuffer(buffer); 58 completeWithBuffer(buffer);
59 } 59 }
60 60
61 void WebCryptoResult::completeWithBoolean(bool b) 61 void WebCryptoResult::completeWithBoolean(bool b)
62 { 62 {
63 m_impl->completeWithBoolean(b); 63 m_impl->completeWithBoolean(b);
64 reset(); 64 reset();
65 } 65 }
(...skipping 22 matching lines...) Expand all
88 void WebCryptoResult::reset() 88 void WebCryptoResult::reset()
89 { 89 {
90 m_impl.reset(); 90 m_impl.reset();
91 } 91 }
92 92
93 void WebCryptoResult::assign(const WebCryptoResult& o) 93 void WebCryptoResult::assign(const WebCryptoResult& o)
94 { 94 {
95 m_impl = o.m_impl; 95 m_impl = o.m_impl;
96 } 96 }
97 97
98 } // namespace WebKit 98 } // namespace blink
OLDNEW
« 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