diff options
author | bulach@chromium.org <bulach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-18 10:41:12 +0000 |
---|---|---|
committer | bulach@chromium.org <bulach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-01-18 10:41:12 +0000 |
commit | 39ab09839e7c5e6c80f7cec84c6e94f070cd451f (patch) | |
tree | a72e97eade9788dcd1ceb0a596c99e3422b61fa2 /chrome/browser/ui | |
parent | 16dedb02ef4175cceaef0e222fb9213f6065ea3a (diff) | |
download | chromium_src-39ab09839e7c5e6c80f7cec84c6e94f070cd451f.zip chromium_src-39ab09839e7c5e6c80f7cec84c6e94f070cd451f.tar.gz chromium_src-39ab09839e7c5e6c80f7cec84c6e94f070cd451f.tar.bz2 |
Stubs PK11 Password Dialog for OpenSSL
BUG=none
TEST=compiles with use_openssl=1 flag.
Review URL: http://codereview.chromium.org/6338004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71645 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui')
-rw-r--r-- | chrome/browser/ui/pk11_password_dialog_openssl.cc | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/chrome/browser/ui/pk11_password_dialog_openssl.cc b/chrome/browser/ui/pk11_password_dialog_openssl.cc new file mode 100644 index 0000000..e3f6219 --- /dev/null +++ b/chrome/browser/ui/pk11_password_dialog_openssl.cc @@ -0,0 +1,27 @@ +// 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. + +#include "chrome/browser/ui/pk11_password_dialog.h" + +#include "base/logging.h" + +namespace browser { + +void UnlockSlotIfNecessary(net::CryptoModule* module, + browser::PK11PasswordReason reason, + const std::string& host, + Callback0::Type* callback) { + // TODO(bulach): implement me. + NOTREACHED(); +} + +void UnlockCertSlotIfNecessary(net::X509Certificate* cert, + browser::PK11PasswordReason reason, + const std::string& host, + Callback0::Type* callback) { + // TODO(bulach): implement me. + NOTREACHED(); +} + +} // namespace browser |