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

Side by Side Diff: components/webcrypto/webcrypto_impl.cc

Issue 1544283002: Clean up header files. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/webcrypto/webcrypto_impl.h" 5 #include "components/webcrypto/webcrypto_impl.h"
6 6
7 #include <limits.h>
7 #include <stdint.h> 8 #include <stdint.h>
8 9
9 #include "base/bind.h" 10 #include "base/bind.h"
10 #include "base/lazy_instance.h" 11 #include "base/lazy_instance.h"
11 #include "base/location.h" 12 #include "base/location.h"
12 #include "base/logging.h" 13 #include "base/logging.h"
13 #include "base/memory/scoped_ptr.h" 14 #include "base/memory/scoped_ptr.h"
14 #include "base/single_thread_task_runner.h" 15 #include "base/single_thread_task_runner.h"
15 #include "base/task_runner.h" 16 #include "base/task_runner.h"
16 #include "base/thread_task_runner_handle.h" 17 #include "base/thread_task_runner_handle.h"
(...skipping 766 matching lines...) Expand 10 before | Expand all | Expand 10 after
783 webcrypto::CryptoData(key_data, key_data_size), &key); 784 webcrypto::CryptoData(key_data, key_data_size), &key);
784 } 785 }
785 786
786 bool WebCryptoImpl::serializeKeyForClone( 787 bool WebCryptoImpl::serializeKeyForClone(
787 const blink::WebCryptoKey& key, 788 const blink::WebCryptoKey& key,
788 blink::WebVector<unsigned char>& key_data) { 789 blink::WebVector<unsigned char>& key_data) {
789 return webcrypto::SerializeKeyForClone(key, &key_data); 790 return webcrypto::SerializeKeyForClone(key, &key_data);
790 } 791 }
791 792
792 } // namespace webcrypto 793 } // namespace webcrypto
OLDNEW
« no previous file with comments | « components/webcrypto/algorithms/hmac_unittest.cc ('k') | content/plugin/plugin_interpose_util_mac.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698