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

Side by Side Diff: Source/core/platform/chromium/support/WebCrypto.cpp

Issue 23537027: WebCrypto: [refactor] Use "unsigned" rather than "size_t" for buffer sizes. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add an ifdef to coordinate with chromium side Created 7 years, 3 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | Source/modules/crypto/SubtleCrypto.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
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, size_t bytesSize) 53 void WebCryptoResult::completeWithBuffer(const void* bytes, unsigned bytesSize)
54 { 54 {
55 WebArrayBuffer buffer = WebKit::WebArrayBuffer::create(bytesSize, 1); 55 WebArrayBuffer buffer = WebKit::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);
(...skipping 22 matching lines...) Expand all
86 { 86 {
87 m_impl.reset(); 87 m_impl.reset();
88 } 88 }
89 89
90 void WebCryptoResult::assign(const WebCryptoResult& o) 90 void WebCryptoResult::assign(const WebCryptoResult& o)
91 { 91 {
92 m_impl = o.m_impl; 92 m_impl = o.m_impl;
93 } 93 }
94 94
95 } // namespace WebKit 95 } // namespace WebKit
OLDNEW
« no previous file with comments | « no previous file | Source/modules/crypto/SubtleCrypto.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698