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

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

Issue 61643007: Update keygen to use correct NSS slot on ChromeOS multiprofile. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: jam review changes Created 7 years 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "chrome/browser/ui/crypto_module_password_dialog.h"
6
7 #include "base/logging.h"
8
9 namespace chrome {
10
11 void UnlockSlotsIfNecessary(const net::CryptoModuleList& modules,
12 CryptoModulePasswordReason reason,
13 const std::string& host,
14 gfx::NativeWindow parent,
15 const base::Closure& callback) {
16 // TODO(bulach): implement me.
17 NOTREACHED();
18 }
19
20 void UnlockCertSlotIfNecessary(net::X509Certificate* cert,
21 CryptoModulePasswordReason reason,
22 const std::string& host,
23 gfx::NativeWindow parent,
24 const base::Closure& callback) {
25 // TODO(bulach): implement me.
26 NOTREACHED();
27 }
28
29 } // namespace chrome
OLDNEW
« no previous file with comments | « chrome/browser/ui/crypto_module_password_dialog_nss.cc ('k') | chrome/browser/ui/gtk/crypto_module_password_dialog_gtk.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698