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

Unified Diff: chrome/browser/captive_portal/captive_portal_tab_helper_unittest.cc

Issue 1421483005: Reland: Remove DCHECK_IMPLIES/CHECK_IMPLIES. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 2 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
Index: chrome/browser/captive_portal/captive_portal_tab_helper_unittest.cc
diff --git a/chrome/browser/captive_portal/captive_portal_tab_helper_unittest.cc b/chrome/browser/captive_portal/captive_portal_tab_helper_unittest.cc
index 96cd8b2197e5d8a2b3f5e1b020c291bd538e5670..e9e63896186e2b2f44b66f66b6571ed14a76d9e4 100644
--- a/chrome/browser/captive_portal/captive_portal_tab_helper_unittest.cc
+++ b/chrome/browser/captive_portal/captive_portal_tab_helper_unittest.cc
@@ -127,7 +127,7 @@ class CaptivePortalTabHelperTest : public ChromeRenderViewHostTestHarness {
content::WebContentsTester* web_contents_tester =
content::WebContentsTester::For(web_contents());
web_contents_tester->StartNavigation(url);
- DCHECK_IMPLIES(navigation_type == kSameProcess, !pending_main_rfh());
+ DCHECK(navigation_type != kSameProcess || !pending_main_rfh());
EXPECT_CALL(mock_reloader(), OnAbort()).Times(1);
content::RenderFrameHost* rfh =
@@ -156,7 +156,7 @@ class CaptivePortalTabHelperTest : public ChromeRenderViewHostTestHarness {
content::WebContentsTester* web_contents_tester =
content::WebContentsTester::For(web_contents());
web_contents_tester->StartNavigation(url);
- DCHECK_IMPLIES(navigation_type == kSameProcess, !pending_main_rfh());
+ DCHECK(navigation_type != kSameProcess || !pending_main_rfh());
EXPECT_CALL(mock_reloader(), OnAbort()).Times(1);
content::RenderFrameHost* rfh =

Powered by Google App Engine
This is Rietveld 408576698