summaryrefslogtreecommitdiffstats
path: root/base/nss_util_internal.h
diff options
context:
space:
mode:
authorcmasone@google.com <cmasone@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-04-29 17:50:06 +0000
committercmasone@google.com <cmasone@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-04-29 17:50:06 +0000
commitdcce6cf6c6b779abaa8279ada0b9c073567c49b3 (patch)
tree6340b27bc5d4d47c8c1cde2c6cce29f27defa25e /base/nss_util_internal.h
parentb6128aaba9e7c148d1a71710b1d7de5d101f9967 (diff)
downloadchromium_src-dcce6cf6c6b779abaa8279ada0b9c073567c49b3.zip
chromium_src-dcce6cf6c6b779abaa8279ada0b9c073567c49b3.tar.gz
chromium_src-dcce6cf6c6b779abaa8279ada0b9c073567c49b3.tar.bz2
Enable Chrome OS to load the user's nssdb later.
Review URL: http://codereview.chromium.org/1730001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@45954 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/nss_util_internal.h')
-rw-r--r--base/nss_util_internal.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/base/nss_util_internal.h b/base/nss_util_internal.h
new file mode 100644
index 0000000..47db045
--- /dev/null
+++ b/base/nss_util_internal.h
@@ -0,0 +1,19 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef BASE_NSS_SLOT_UTIL_H_
+#define BASE_NSS_SLOT_UTIL_H_
+
+#include <secmodt.h>
+
+// These functions return a type defined in an NSS header, and so cannot be
+// declared in nss_util.h. Hence, they are declared here.
+
+namespace base {
+
+PK11SlotInfo* GetDefaultNSSKeySlot();
+
+} // namespace base
+
+#endif // BASE_NSS_UTIL_H_