Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(194)

Side by Side Diff: chrome/browser/ui/crypto_module_password_dialog_openssl.cc

Issue 6303004: Cleanup: replace usage of "pk11" with "pkcs11" or "crypto module", as appropriate. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sorting fix again Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #include "chrome/browser/ui/pk11_password_dialog.h" 5 #include "chrome/browser/ui/crypto_module_password_dialog.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 8
9 namespace browser { 9 namespace browser {
10 10
11 void UnlockSlotIfNecessary(net::CryptoModule* module, 11 void UnlockSlotIfNecessary(net::CryptoModule* module,
12 browser::PK11PasswordReason reason, 12 browser::CryptoModulePasswordReason reason,
13 const std::string& host, 13 const std::string& host,
14 Callback0::Type* callback) { 14 Callback0::Type* callback) {
15 // TODO(bulach): implement me. 15 // TODO(bulach): implement me.
16 NOTREACHED(); 16 NOTREACHED();
17 } 17 }
18 18
19 void UnlockCertSlotIfNecessary(net::X509Certificate* cert, 19 void UnlockCertSlotIfNecessary(net::X509Certificate* cert,
20 browser::PK11PasswordReason reason, 20 browser::CryptoModulePasswordReason reason,
21 const std::string& host, 21 const std::string& host,
22 Callback0::Type* callback) { 22 Callback0::Type* callback) {
23 // TODO(bulach): implement me. 23 // TODO(bulach): implement me.
24 NOTREACHED(); 24 NOTREACHED();
25 } 25 }
26 26
27 } // namespace browser 27 } // namespace browser
OLDNEW
« no previous file with comments | « chrome/browser/ui/crypto_module_password_dialog_nss.cc ('k') | chrome/browser/ui/gtk/crypto_module_password_dialog.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698