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

Unified Diff: content/browser/frame_host/navigation_controller_impl_unittest.cc

Issue 1957483003: Removal of SignedCertificateTimestampStore (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed IPC problem Created 4 years, 7 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 | « chrome/browser/ui/website_settings/website_settings.h ('k') | content/browser/loader/resource_loader.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/frame_host/navigation_controller_impl_unittest.cc
diff --git a/content/browser/frame_host/navigation_controller_impl_unittest.cc b/content/browser/frame_host/navigation_controller_impl_unittest.cc
index 62463349925d9f53611e482a85ff59536dd207ad..f67f7e6f9a2118486c0d69a4519367424cdfb6a1 100644
--- a/content/browser/frame_host/navigation_controller_impl_unittest.cc
+++ b/content/browser/frame_host/navigation_controller_impl_unittest.cc
@@ -5321,9 +5321,12 @@ TEST_F(NavigationControllerTest, RendererNavigateBogusSecurityInfo) {
observer.details().ssl_status.connection_status);
EXPECT_EQ(default_ssl_status.content_status,
observer.details().ssl_status.content_status);
- EXPECT_EQ(
- 0u,
- observer.details().ssl_status.signed_certificate_timestamp_ids.size());
+ EXPECT_EQ(default_ssl_status.num_unknown_scts,
+ observer.details().ssl_status.num_unknown_scts);
+ EXPECT_EQ(default_ssl_status.num_invalid_scts,
+ observer.details().ssl_status.num_invalid_scts);
+ EXPECT_EQ(default_ssl_status.num_valid_scts,
+ observer.details().ssl_status.num_valid_scts);
EXPECT_EQ(1, main_test_rfh()->GetProcess()->bad_msg_count());
}
« no previous file with comments | « chrome/browser/ui/website_settings/website_settings.h ('k') | content/browser/loader/resource_loader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698