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

Issue 2711113002: net: remove CryptoModuleList typedef (Closed)

Created:
3 years, 10 months ago by tfarina
Modified:
3 years, 9 months ago
Reviewers:
Bence, mattm, Dan Beam, sky
CC:
chromium-reviews, dbeam+watch-options_chromium.org, cbentzel+watch_chromium.org, michaelpg+watch-options_chromium.org, michaelpg+watch-md-settings_chromium.org, net-reviews_chromium.org, bnc+watch_chromium.org, dbeam+watch-settings_chromium.org, stevenjb+watch-md-settings_chromium.org, eroman
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

net: remove CryptoModuleList typedef Fixes ListModules() TODO in net/cert/nss_cert_database.h. BUG=488586 TEST=net_unittests R=mattm@chromium.org Review-Url: https://codereview.chromium.org/2711113002 Cr-Commit-Position: refs/heads/master@{#453571} Committed: https://chromium.googlesource.com/chromium/src/+/a55b26897fcad47e5d9d7353f24f5cb1f130df65

Patch Set 1 #

Patch Set 2 : fixes - chrome compiles #

Total comments: 4

Patch Set 3 : fix chromeos build? #

Patch Set 4 : one more fix for chromeos #

Total comments: 3

Patch Set 5 : more std::moves #

Unified diffs Side-by-side diffs Delta from patch set Stats (+52 lines, -60 lines) Patch
M chrome/browser/certificate_manager_model.cc View 1 2 3 4 1 chunk +3 lines, -4 lines 0 comments Download
M chrome/browser/ui/crypto_module_password_dialog_nss.h View 1 2 3 4 2 chunks +2 lines, -3 lines 0 comments Download
M chrome/browser/ui/crypto_module_password_dialog_nss.cc View 1 2 3 4 9 chunks +17 lines, -20 lines 0 comments Download
M chrome/browser/ui/webui/options/certificate_manager_handler.cc View 1 2 3 4 1 chunk +3 lines, -4 lines 0 comments Download
M chrome/browser/ui/webui/settings/certificates_handler.cc View 1 2 3 4 1 chunk +3 lines, -3 lines 0 comments Download
M net/base/crypto_module.h View 1 chunk +0 lines, -2 lines 0 comments Download
M net/cert/nss_cert_database.h View 1 2 chunks +2 lines, -5 lines 0 comments Download
M net/cert/nss_cert_database.cc View 1 2 chunks +3 lines, -2 lines 0 comments Download
M net/cert/nss_cert_database_chromeos.h View 1 chunk +2 lines, -1 line 0 comments Download
M net/cert/nss_cert_database_chromeos.cc View 1 chunk +3 lines, -2 lines 0 comments Download
M net/cert/nss_cert_database_chromeos_unittest.cc View 1 1 chunk +10 lines, -10 lines 0 comments Download
M net/cert/nss_profile_filter_chromeos.h View 1 2 3 2 chunks +2 lines, -2 lines 0 comments Download
M net/cert/nss_profile_filter_chromeos.cc View 1 2 1 chunk +2 lines, -2 lines 0 comments Download

Messages

Total messages: 43 (26 generated)
tfarina
https://codereview.chromium.org/2711113002/diff/20001/chrome/browser/ui/crypto_module_password_dialog_nss.cc File chrome/browser/ui/crypto_module_password_dialog_nss.cc (right): https://codereview.chromium.org/2711113002/diff/20001/chrome/browser/ui/crypto_module_password_dialog_nss.cc#newcode63 chrome/browser/ui/crypto_module_password_dialog_nss.cc:63: for (const auto& slot : modules) { It was ...
3 years, 10 months ago (2017-02-24 14:30:50 UTC) #5
mattm
https://codereview.chromium.org/2711113002/diff/20001/chrome/browser/ui/crypto_module_password_dialog_nss.cc File chrome/browser/ui/crypto_module_password_dialog_nss.cc (right): https://codereview.chromium.org/2711113002/diff/20001/chrome/browser/ui/crypto_module_password_dialog_nss.cc#newcode63 chrome/browser/ui/crypto_module_password_dialog_nss.cc:63: for (const auto& slot : modules) { On 2017/02/24 ...
3 years, 10 months ago (2017-02-24 21:03:39 UTC) #16
Bence
https://codereview.chromium.org/2711113002/diff/60001/chrome/browser/ui/crypto_module_password_dialog_nss.cc File chrome/browser/ui/crypto_module_password_dialog_nss.cc (right): https://codereview.chromium.org/2711113002/diff/60001/chrome/browser/ui/crypto_module_password_dialog_nss.cc#newcode64 chrome/browser/ui/crypto_module_password_dialog_nss.cc:64: modules_.push_back(crypto::ScopedPK11Slot(PK11_ReferenceSlot(slot.get()))); On 2017/02/24 21:03:39, mattm wrote: > hm I ...
3 years, 10 months ago (2017-02-24 22:43:21 UTC) #18
mattm
https://codereview.chromium.org/2711113002/diff/60001/chrome/browser/ui/crypto_module_password_dialog_nss.cc File chrome/browser/ui/crypto_module_password_dialog_nss.cc (right): https://codereview.chromium.org/2711113002/diff/60001/chrome/browser/ui/crypto_module_password_dialog_nss.cc#newcode64 chrome/browser/ui/crypto_module_password_dialog_nss.cc:64: modules_.push_back(crypto::ScopedPK11Slot(PK11_ReferenceSlot(slot.get()))); On 2017/02/24 22:43:20, Bence wrote: > On 2017/02/24 ...
3 years, 10 months ago (2017-02-24 22:51:26 UTC) #19
Bence
On 2017/02/24 22:51:26, mattm wrote: > https://codereview.chromium.org/2711113002/diff/60001/chrome/browser/ui/crypto_module_password_dialog_nss.cc > File chrome/browser/ui/crypto_module_password_dialog_nss.cc (right): > > https://codereview.chromium.org/2711113002/diff/60001/chrome/browser/ui/crypto_module_password_dialog_nss.cc#newcode64 > ...
3 years, 10 months ago (2017-02-24 22:54:18 UTC) #20
tfarina
C++ Templates gives pretty nice error messages! :( https://codereview.chromium.org/2711113002/diff/20001/chrome/browser/ui/crypto_module_password_dialog_nss.cc File chrome/browser/ui/crypto_module_password_dialog_nss.cc (right): https://codereview.chromium.org/2711113002/diff/20001/chrome/browser/ui/crypto_module_password_dialog_nss.cc#newcode63 chrome/browser/ui/crypto_module_password_dialog_nss.cc:63: for ...
3 years, 10 months ago (2017-02-25 02:04:42 UTC) #21
mattm
https://codereview.chromium.org/2711113002/diff/20001/chrome/browser/ui/crypto_module_password_dialog_nss.cc File chrome/browser/ui/crypto_module_password_dialog_nss.cc (right): https://codereview.chromium.org/2711113002/diff/20001/chrome/browser/ui/crypto_module_password_dialog_nss.cc#newcode63 chrome/browser/ui/crypto_module_password_dialog_nss.cc:63: for (const auto& slot : modules) { On 2017/02/25 ...
3 years, 10 months ago (2017-02-25 02:45:01 UTC) #22
tfarina
On 2017/02/25 02:45:01, mattm wrote: > I think you just didn't propagate the moves through ...
3 years, 10 months ago (2017-02-25 13:10:23 UTC) #25
mattm
Looks like CryptoModule class is now unused. Would you like to do a followup CL ...
3 years, 9 months ago (2017-02-27 22:16:51 UTC) #28
tfarina
+Scott for chrome/ OWNER. On 2017/02/27 22:16:51, mattm wrote: > Looks like CryptoModule class is ...
3 years, 9 months ago (2017-02-27 22:19:45 UTC) #30
sky
LGTM
3 years, 9 months ago (2017-02-27 23:50:08 UTC) #31
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2711113002/80001
3 years, 9 months ago (2017-02-28 01:04:04 UTC) #33
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on master.tryserver.chromium.linux (JOB_FAILED, http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/374118)
3 years, 9 months ago (2017-02-28 01:13:50 UTC) #35
tfarina
+Dan for chrome/browser/ui/webui/options/certificate_manager_handler.cc, OWNER.
3 years, 9 months ago (2017-02-28 01:34:22 UTC) #37
Dan Beam
rs lgtm
3 years, 9 months ago (2017-02-28 02:53:23 UTC) #38
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/v2/patch-status/codereview.chromium.org/2711113002/80001
3 years, 9 months ago (2017-02-28 11:43:35 UTC) #40
commit-bot: I haz the power
3 years, 9 months ago (2017-02-28 11:48:22 UTC) #43
Message was sent while issue was closed.
Committed patchset #5 (id:80001) as
https://chromium.googlesource.com/chromium/src/+/a55b26897fcad47e5d9d7353f24f...

Powered by Google App Engine
This is Rietveld 408576698