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

Unified Diff: net/cert/nss_profile_filter_chromeos.cc

Issue 2711113002: net: remove CryptoModuleList typedef (Closed)
Patch Set: more std::moves Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/cert/nss_profile_filter_chromeos.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/cert/nss_profile_filter_chromeos.cc
diff --git a/net/cert/nss_profile_filter_chromeos.cc b/net/cert/nss_profile_filter_chromeos.cc
index 71eeab20629cea4cd1afd46b516a96181efc0c0a..ebde97376982e7fbbfe5e155ff91d5d38e0027b3 100644
--- a/net/cert/nss_profile_filter_chromeos.cc
+++ b/net/cert/nss_profile_filter_chromeos.cc
@@ -153,8 +153,8 @@ NSSProfileFilterChromeOS::ModuleNotAllowedForProfilePredicate::
: filter_(filter) {}
bool NSSProfileFilterChromeOS::ModuleNotAllowedForProfilePredicate::operator()(
- const scoped_refptr<CryptoModule>& module) const {
- return !filter_.IsModuleAllowed(module->os_module_handle());
+ const crypto::ScopedPK11Slot& module) const {
+ return !filter_.IsModuleAllowed(module.get());
}
} // namespace net
« no previous file with comments | « net/cert/nss_profile_filter_chromeos.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698