| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #ifndef NET_CERT_NSS_CERT_DATABASE_H_ | 5 #ifndef NET_CERT_NSS_CERT_DATABASE_H_ |
| 6 #define NET_CERT_NSS_CERT_DATABASE_H_ | 6 #define NET_CERT_NSS_CERT_DATABASE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 |
| 9 #include <string> | 10 #include <string> |
| 10 #include <vector> | 11 #include <vector> |
| 11 | 12 |
| 12 #include "base/callback_forward.h" | 13 #include "base/callback_forward.h" |
| 13 #include "base/macros.h" | 14 #include "base/macros.h" |
| 14 #include "base/memory/ref_counted.h" | 15 #include "base/memory/ref_counted.h" |
| 15 #include "base/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
| 16 #include "base/strings/string16.h" | 17 #include "base/strings/string16.h" |
| 17 #include "crypto/scoped_nss_types.h" | 18 #include "crypto/scoped_nss_types.h" |
| 18 #include "net/base/net_errors.h" | 19 #include "net/base/net_errors.h" |
| (...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 const scoped_refptr<base::ObserverListThreadSafe<Observer>> observer_list_; | 312 const scoped_refptr<base::ObserverListThreadSafe<Observer>> observer_list_; |
| 312 | 313 |
| 313 base::WeakPtrFactory<NSSCertDatabase> weak_factory_; | 314 base::WeakPtrFactory<NSSCertDatabase> weak_factory_; |
| 314 | 315 |
| 315 DISALLOW_COPY_AND_ASSIGN(NSSCertDatabase); | 316 DISALLOW_COPY_AND_ASSIGN(NSSCertDatabase); |
| 316 }; | 317 }; |
| 317 | 318 |
| 318 } // namespace net | 319 } // namespace net |
| 319 | 320 |
| 320 #endif // NET_CERT_NSS_CERT_DATABASE_H_ | 321 #endif // NET_CERT_NSS_CERT_DATABASE_H_ |
| OLD | NEW |