| Index: chrome/browser/ui/pk11_password_dialog_openssl.cc
|
| 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 0000000000000000000000000000000000000000..5c08d7607af09ef1904eac94c08bec9d36cccc0e
|
| --- /dev/null
|
| +++ b/chrome/browser/ui/pk11_password_dialog_openssl.cc
|
| @@ -0,0 +1,25 @@
|
| +// 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"
|
| +
|
| +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
|
|
|