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

Unified Diff: chrome/browser/ui/crypto_module_password_dialog_nss.h

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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/crypto_module_password_dialog_nss.h
diff --git a/chrome/browser/ui/crypto_module_password_dialog_openssl.cc b/chrome/browser/ui/crypto_module_password_dialog_nss.h
similarity index 33%
rename from chrome/browser/ui/crypto_module_password_dialog_openssl.cc
rename to chrome/browser/ui/crypto_module_password_dialog_nss.h
index 3d0e34cb6db241a6d2e99e7c23be6713d64f12e9..1b2457c18c59b3ef5b0befe12fbd294d5f69e860 100644
--- a/chrome/browser/ui/crypto_module_password_dialog_openssl.cc
+++ b/chrome/browser/ui/crypto_module_password_dialog_nss.h
@@ -1,29 +1,44 @@
-// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 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 CHROME_BROWSER_UI_CRYPTO_MODULE_PASSWORD_DIALOG_NSS_H_
+#define CHROME_BROWSER_UI_CRYPTO_MODULE_PASSWORD_DIALOG_NSS_H_
+
+#include <string>
+#include <vector>
+
+#include "base/callback_forward.h"
+#include "base/memory/ref_counted.h"
#include "chrome/browser/ui/crypto_module_password_dialog.h"
+#include "ui/gfx/native_widget_types.h"
-#include "base/logging.h"
+namespace net {
+class CryptoModule;
+typedef std::vector<scoped_refptr<CryptoModule> > CryptoModuleList;
+class X509Certificate;
+}
namespace chrome {
+// Asynchronously unlock |modules|, if necessary. |callback| is called when
+// done (regardless if any modules were successfully unlocked or not). Should
+// only be called on UI thread.
void UnlockSlotsIfNecessary(const net::CryptoModuleList& modules,
CryptoModulePasswordReason reason,
- const std::string& host,
+ const std::string& server,
gfx::NativeWindow parent,
- const base::Closure& callback) {
- // TODO(bulach): implement me.
- NOTREACHED();
-}
+ const base::Closure& callback);
+// Asynchronously unlock the |cert|'s module, if necessary. |callback| is
+// called when done (regardless if module was successfully unlocked or not).
+// Should only be called on UI thread.
void UnlockCertSlotIfNecessary(net::X509Certificate* cert,
CryptoModulePasswordReason reason,
- const std::string& host,
+ const std::string& server,
gfx::NativeWindow parent,
- const base::Closure& callback) {
- // TODO(bulach): implement me.
- NOTREACHED();
-}
+ const base::Closure& callback);
} // namespace chrome
+
+#endif // CHROME_BROWSER_UI_CRYPTO_MODULE_PASSWORD_DIALOG_NSS_H_
« no previous file with comments | « chrome/browser/ui/crypto_module_password_dialog.cc ('k') | chrome/browser/ui/crypto_module_password_dialog_nss.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698