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

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

Issue 1849343004: Remove RenderFrameHostImplState and convert it to boolean. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing nits. Created 4 years, 8 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 | « no previous file | content/browser/frame_host/navigator_impl_unittest.cc » ('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_browsertest.cc
diff --git a/content/browser/frame_host/navigation_controller_impl_browsertest.cc b/content/browser/frame_host/navigation_controller_impl_browsertest.cc
index cf9c8c79ecf8fda878cea954f280ea01daf508e6..59f5abae850c015a4e607783c2d0fdc2c3cb9892 100644
--- a/content/browser/frame_host/navigation_controller_impl_browsertest.cc
+++ b/content/browser/frame_host/navigation_controller_impl_browsertest.cc
@@ -635,7 +635,7 @@ class LoadCommittedCapturer : public WebContentsObserver {
// Don't pay attention to swapped out RenderFrameHosts in the main frame.
// TODO(nasko): Remove once swappedout:// is gone.
// See https://crbug.com/357747.
- if (!RenderFrameHostImpl::IsRFHStateActive(rfh->rfh_state())) {
+ if (!rfh->is_active()) {
DLOG(INFO) << "Skipping swapped out RFH: "
<< rfh->GetSiteInstance()->GetSiteURL();
return;
« no previous file with comments | « no previous file | content/browser/frame_host/navigator_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698