Index: chrome/browser/chromeos/cros/cert_library.h |
=================================================================== |
--- chrome/browser/chromeos/cros/cert_library.h (revision 99168) |
+++ chrome/browser/chromeos/cros/cert_library.h (working copy) |
@@ -12,6 +12,10 @@ |
#include "net/base/cert_database.h" |
#include "net/base/x509_certificate.h" |
+namespace crypto { |
+class SymmetricKey; |
+} |
+ |
namespace chromeos { |
class CertLibrary { |
@@ -96,6 +100,9 @@ |
// Returns the current list of server CA certificates. |
virtual const CertList& GetCACertificates() const = 0; |
+ |
+ // Returns supplemental user key. |
wtc
2011/09/06 21:35:17
Nit: add "the".
Does the caller own the returned
zel
2011/09/06 22:33:35
Done.
|
+ virtual crypto::SymmetricKey* GetSupplementalUserKey() const = 0; |
}; |
} // namespace chromeos |