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

Side by Side Diff: content/test/web_contents_observer_sanity_checker.h

Issue 1340163002: PlzNavigate: fix timing issue in app window creation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@navigation-throttle
Patch Set: Addressed nits Created 5 years, 3 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_TEST_WEB_CONTENTS_OBSERVER_SANITY_CHECKER_H_ 5 #ifndef CONTENT_TEST_WEB_CONTENTS_OBSERVER_SANITY_CHECKER_H_
6 #define CONTENT_TEST_WEB_CONTENTS_OBSERVER_SANITY_CHECKER_H_ 6 #define CONTENT_TEST_WEB_CONTENTS_OBSERVER_SANITY_CHECKER_H_
7 7
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 10
(...skipping 24 matching lines...) Expand all
35 // WebContentsObserver implementation. 35 // WebContentsObserver implementation.
36 void RenderFrameCreated(RenderFrameHost* render_frame_host) override; 36 void RenderFrameCreated(RenderFrameHost* render_frame_host) override;
37 void RenderFrameDeleted(RenderFrameHost* render_frame_host) override; 37 void RenderFrameDeleted(RenderFrameHost* render_frame_host) override;
38 void RenderFrameForInterstitialPageCreated( 38 void RenderFrameForInterstitialPageCreated(
39 RenderFrameHost* render_frame_host) override; 39 RenderFrameHost* render_frame_host) override;
40 void RenderFrameHostChanged(RenderFrameHost* old_host, 40 void RenderFrameHostChanged(RenderFrameHost* old_host,
41 RenderFrameHost* new_host) override; 41 RenderFrameHost* new_host) override;
42 void FrameDeleted(RenderFrameHost* render_frame_host) override; 42 void FrameDeleted(RenderFrameHost* render_frame_host) override;
43 void DidStartNavigation(NavigationHandle* navigation_handle) override; 43 void DidStartNavigation(NavigationHandle* navigation_handle) override;
44 void DidRedirectNavigation(NavigationHandle* navigation_handle) override; 44 void DidRedirectNavigation(NavigationHandle* navigation_handle) override;
45 void ReadyToCommitNavigation(NavigationHandle* navigation_handle) override;
45 void DidCommitNavigation(NavigationHandle* navigation_handle) override; 46 void DidCommitNavigation(NavigationHandle* navigation_handle) override;
46 void DidFinishNavigation(NavigationHandle* navigation_handle) override; 47 void DidFinishNavigation(NavigationHandle* navigation_handle) override;
47 void DidStartProvisionalLoadForFrame(RenderFrameHost* render_frame_host, 48 void DidStartProvisionalLoadForFrame(RenderFrameHost* render_frame_host,
48 const GURL& validated_url, 49 const GURL& validated_url,
49 bool is_error_page, 50 bool is_error_page,
50 bool is_iframe_srcdoc) override; 51 bool is_iframe_srcdoc) override;
51 void DidCommitProvisionalLoadForFrame( 52 void DidCommitProvisionalLoadForFrame(
52 RenderFrameHost* render_frame_host, 53 RenderFrameHost* render_frame_host,
53 const GURL& url, 54 const GURL& url,
54 ui::PageTransition transition_type) override; 55 ui::PageTransition transition_type) override;
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 std::set<NavigationHandle*> ongoing_committed_navigations_; 105 std::set<NavigationHandle*> ongoing_committed_navigations_;
105 106
106 bool web_contents_destroyed_; 107 bool web_contents_destroyed_;
107 108
108 DISALLOW_COPY_AND_ASSIGN(WebContentsObserverSanityChecker); 109 DISALLOW_COPY_AND_ASSIGN(WebContentsObserverSanityChecker);
109 }; 110 };
110 111
111 } // namespace content 112 } // namespace content
112 113
113 #endif // CONTENT_TEST_WEB_CONTENTS_OBSERVER_SANITY_CHECKER_H_ 114 #endif // CONTENT_TEST_WEB_CONTENTS_OBSERVER_SANITY_CHECKER_H_
OLDNEW
« no previous file with comments | « content/public/browser/web_contents_observer.h ('k') | content/test/web_contents_observer_sanity_checker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698