| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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 #ifndef NET_CERT_NSS_CERT_DATABASE_CHROMEOS_ | 5 #ifndef NET_CERT_NSS_CERT_DATABASE_CHROMEOS_ |
| 6 #define NET_CERT_NSS_CERT_DATABASE_CHROMEOS_ | 6 #define NET_CERT_NSS_CERT_DATABASE_CHROMEOS_ |
| 7 | 7 |
| 8 #include "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "base/macros.h" |
| 9 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
| 10 #include "crypto/scoped_nss_types.h" | 11 #include "crypto/scoped_nss_types.h" |
| 11 #include "net/base/net_export.h" | 12 #include "net/base/net_export.h" |
| 12 #include "net/cert/nss_cert_database.h" | 13 #include "net/cert/nss_cert_database.h" |
| 13 #include "net/cert/nss_profile_filter_chromeos.h" | 14 #include "net/cert/nss_profile_filter_chromeos.h" |
| 14 | 15 |
| 15 namespace net { | 16 namespace net { |
| 16 | 17 |
| 17 class NET_EXPORT NSSCertDatabaseChromeOS : public NSSCertDatabase { | 18 class NET_EXPORT NSSCertDatabaseChromeOS : public NSSCertDatabase { |
| 18 public: | 19 public: |
| (...skipping 25 matching lines...) Expand all Loading... |
| 44 | 45 |
| 45 NSSProfileFilterChromeOS profile_filter_; | 46 NSSProfileFilterChromeOS profile_filter_; |
| 46 crypto::ScopedPK11Slot system_slot_; | 47 crypto::ScopedPK11Slot system_slot_; |
| 47 | 48 |
| 48 DISALLOW_COPY_AND_ASSIGN(NSSCertDatabaseChromeOS); | 49 DISALLOW_COPY_AND_ASSIGN(NSSCertDatabaseChromeOS); |
| 49 }; | 50 }; |
| 50 | 51 |
| 51 } // namespace net | 52 } // namespace net |
| 52 | 53 |
| 53 #endif // NET_CERT_NSS_CERT_DATABASE_CHROMEOS_ | 54 #endif // NET_CERT_NSS_CERT_DATABASE_CHROMEOS_ |
| OLD | NEW |