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

Side by Side Diff: content/renderer/webcrypto/webcrypto_impl.cc

Issue 24494003: [webcrypto] Move the files to a subdirectory (content/renderer/webcrypto). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 2 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
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 "content/renderer/webcrypto_impl.h" 5 #include "content/renderer/webcrypto/webcrypto_impl.h"
6 6
7 #include "base/memory/scoped_ptr.h" 7 #include "base/memory/scoped_ptr.h"
8 #include "third_party/WebKit/public/platform/WebArrayBuffer.h" 8 #include "third_party/WebKit/public/platform/WebArrayBuffer.h"
9 #include "third_party/WebKit/public/platform/WebCryptoAlgorithm.h" 9 #include "third_party/WebKit/public/platform/WebCryptoAlgorithm.h"
10 #include "third_party/WebKit/public/platform/WebCryptoKey.h" 10 #include "third_party/WebKit/public/platform/WebCryptoKey.h"
11 11
12 namespace content { 12 namespace content {
13 13
14 WebCryptoImpl::WebCryptoImpl() { 14 WebCryptoImpl::WebCryptoImpl() {
15 Init(); 15 Init();
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 data, 87 data,
88 data_size, 88 data_size,
89 &signature_match)) { 89 &signature_match)) {
90 result.completeWithError(); 90 result.completeWithError();
91 } else { 91 } else {
92 result.completeWithBoolean(signature_match); 92 result.completeWithBoolean(signature_match);
93 } 93 }
94 } 94 }
95 95
96 } // namespace content 96 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/webcrypto/webcrypto_impl.h ('k') | content/renderer/webcrypto/webcrypto_impl_nss.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698