| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |