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

Side by Side Diff: Source/platform/exported/WebCryptoResult.cpp

Issue 458313005: Cleanup namespace usage from animation to exported in platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Cleanup namespace usage from animation to exported in platform/ Created 6 years, 4 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 unified diff | Download patch
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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 46
47 void WebCryptoResult::completeWithBuffer(const WebArrayBuffer& buffer) 47 void WebCryptoResult::completeWithBuffer(const WebArrayBuffer& buffer)
48 { 48 {
49 RELEASE_ASSERT(!buffer.isNull()); 49 RELEASE_ASSERT(!buffer.isNull());
50 m_impl->completeWithBuffer(buffer); 50 m_impl->completeWithBuffer(buffer);
51 reset(); 51 reset();
52 } 52 }
53 53
54 void WebCryptoResult::completeWithBuffer(const void* bytes, unsigned bytesSize) 54 void WebCryptoResult::completeWithBuffer(const void* bytes, unsigned bytesSize)
55 { 55 {
56 WebArrayBuffer buffer = blink::WebArrayBuffer::create(bytesSize, 1); 56 WebArrayBuffer buffer = WebArrayBuffer::create(bytesSize, 1);
57 RELEASE_ASSERT(!buffer.isNull()); 57 RELEASE_ASSERT(!buffer.isNull());
58 memcpy(buffer.data(), bytes, bytesSize); 58 memcpy(buffer.data(), bytes, bytesSize);
59 completeWithBuffer(buffer); 59 completeWithBuffer(buffer);
60 } 60 }
61 61
62 void WebCryptoResult::completeWithJson(const char* utf8Data, unsigned length) 62 void WebCryptoResult::completeWithJson(const char* utf8Data, unsigned length)
63 { 63 {
64 m_impl->completeWithJson(utf8Data, length); 64 m_impl->completeWithJson(utf8Data, length);
65 reset(); 65 reset();
66 } 66 }
(...skipping 17 matching lines...) Expand all
84 ASSERT(!privateKey.isNull()); 84 ASSERT(!privateKey.isNull());
85 m_impl->completeWithKeyPair(publicKey, privateKey); 85 m_impl->completeWithKeyPair(publicKey, privateKey);
86 reset(); 86 reset();
87 } 87 }
88 88
89 bool WebCryptoResult::cancelled() const 89 bool WebCryptoResult::cancelled() const
90 { 90 {
91 return m_impl->cancelled(); 91 return m_impl->cancelled();
92 } 92 }
93 93
94 WebCryptoResult::WebCryptoResult(const PassRefPtr<blink::CryptoResult>& impl) 94 WebCryptoResult::WebCryptoResult(const PassRefPtr<CryptoResult>& impl)
95 : m_impl(impl) 95 : m_impl(impl)
96 { 96 {
97 ASSERT(m_impl.get()); 97 ASSERT(m_impl.get());
98 } 98 }
99 99
100 void WebCryptoResult::reset() 100 void WebCryptoResult::reset()
101 { 101 {
102 m_impl.reset(); 102 m_impl.reset();
103 } 103 }
104 104
105 void WebCryptoResult::assign(const WebCryptoResult& o) 105 void WebCryptoResult::assign(const WebCryptoResult& o)
106 { 106 {
107 m_impl = o.m_impl; 107 m_impl = o.m_impl;
108 } 108 }
109 109
110 } // namespace blink 110 } // namespace blink
OLDNEW
« no previous file with comments | « Source/platform/exported/WebConvertableToTraceFormat.cpp ('k') | Source/platform/exported/WebCursorInfo.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698