| Index: content/test/web_contents_observer_sanity_checker.h
|
| diff --git a/content/test/web_contents_observer_sanity_checker.h b/content/test/web_contents_observer_sanity_checker.h
|
| index e5508d3ee3a6d78996b15f87485fb592ef36c6ac..aa7c9b24b5b10c8e0ad0ec0867e23653b7c18af6 100644
|
| --- a/content/test/web_contents_observer_sanity_checker.h
|
| +++ b/content/test/web_contents_observer_sanity_checker.h
|
| @@ -43,7 +43,6 @@ class WebContentsObserverSanityChecker : public WebContentsObserver,
|
| void DidStartNavigation(NavigationHandle* navigation_handle) override;
|
| void DidRedirectNavigation(NavigationHandle* navigation_handle) override;
|
| void ReadyToCommitNavigation(NavigationHandle* navigation_handle) override;
|
| - void DidCommitNavigation(NavigationHandle* navigation_handle) override;
|
| void DidFinishNavigation(NavigationHandle* navigation_handle) override;
|
| void DidStartProvisionalLoadForFrame(RenderFrameHost* render_frame_host,
|
| const GURL& validated_url,
|
| @@ -95,14 +94,12 @@ class WebContentsObserverSanityChecker : public WebContentsObserver,
|
| void AssertMainFrameExists();
|
|
|
| bool NavigationIsOngoing(NavigationHandle* navigation_handle);
|
| - bool NavigationIsOngoingAndCommitted(NavigationHandle* navigation_handle);
|
|
|
| std::set<std::pair<int, int>> current_hosts_;
|
| std::set<std::pair<int, int>> live_routes_;
|
| std::set<std::pair<int, int>> deleted_routes_;
|
|
|
| std::set<NavigationHandle*> ongoing_navigations_;
|
| - std::set<NavigationHandle*> ongoing_committed_navigations_;
|
|
|
| bool web_contents_destroyed_;
|
|
|
|
|