OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "net/base/keygen_handler.h" | 5 #include "net/base/keygen_handler.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 | 8 |
9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
10 #include "base/base64.h" | 10 #include "base/base64.h" |
| 11 #include "base/location.h" |
11 #include "base/logging.h" | 12 #include "base/logging.h" |
12 #include "base/task.h" | 13 #include "base/task.h" |
13 #include "base/threading/worker_pool.h" | 14 #include "base/threading/worker_pool.h" |
14 #include "base/threading/thread_restrictions.h" | 15 #include "base/threading/thread_restrictions.h" |
15 #include "base/synchronization/waitable_event.h" | 16 #include "base/synchronization/waitable_event.h" |
16 #include "crypto/nss_util.h" | 17 #include "crypto/nss_util.h" |
17 #include "testing/gtest/include/gtest/gtest.h" | 18 #include "testing/gtest/include/gtest/gtest.h" |
18 | 19 |
19 #if defined(USE_NSS) | 20 #if defined(USE_NSS) |
20 #include <private/pprthred.h> // PR_DetachThread | 21 #include <private/pprthred.h> // PR_DetachThread |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
138 events[i] = NULL; | 139 events[i] = NULL; |
139 | 140 |
140 VLOG(1) << "KeygenHandler " << i << " produced: " << results[i]; | 141 VLOG(1) << "KeygenHandler " << i << " produced: " << results[i]; |
141 AssertValidSignedPublicKeyAndChallenge(results[i], "some challenge"); | 142 AssertValidSignedPublicKeyAndChallenge(results[i], "some challenge"); |
142 } | 143 } |
143 } | 144 } |
144 | 145 |
145 } // namespace | 146 } // namespace |
146 | 147 |
147 } // namespace net | 148 } // namespace net |
OLD | NEW |