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

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

Issue 2684143002: Remove deprecated navigation callbacks on WebContentsObserver that are now unused. (Closed)
Patch Set: call old RFH's BrowserAccessibilityManager Created 3 years, 10 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 28 matching lines...) Expand all
39 void RenderFrameDeleted(RenderFrameHost* render_frame_host) override; 39 void RenderFrameDeleted(RenderFrameHost* render_frame_host) override;
40 void RenderFrameForInterstitialPageCreated( 40 void RenderFrameForInterstitialPageCreated(
41 RenderFrameHost* render_frame_host) override; 41 RenderFrameHost* render_frame_host) override;
42 void RenderFrameHostChanged(RenderFrameHost* old_host, 42 void RenderFrameHostChanged(RenderFrameHost* old_host,
43 RenderFrameHost* new_host) override; 43 RenderFrameHost* new_host) override;
44 void FrameDeleted(RenderFrameHost* render_frame_host) override; 44 void FrameDeleted(RenderFrameHost* render_frame_host) override;
45 void DidStartNavigation(NavigationHandle* navigation_handle) override; 45 void DidStartNavigation(NavigationHandle* navigation_handle) override;
46 void DidRedirectNavigation(NavigationHandle* navigation_handle) override; 46 void DidRedirectNavigation(NavigationHandle* navigation_handle) override;
47 void ReadyToCommitNavigation(NavigationHandle* navigation_handle) override; 47 void ReadyToCommitNavigation(NavigationHandle* navigation_handle) override;
48 void DidFinishNavigation(NavigationHandle* navigation_handle) override; 48 void DidFinishNavigation(NavigationHandle* navigation_handle) override;
49 void DidStartProvisionalLoadForFrame(RenderFrameHost* render_frame_host,
50 const GURL& validated_url,
51 bool is_error_page) override;
52 void DidCommitProvisionalLoadForFrame(
53 RenderFrameHost* render_frame_host,
54 const GURL& url,
55 ui::PageTransition transition_type) override;
56 void DidFailProvisionalLoad(RenderFrameHost* render_frame_host,
57 const GURL& validated_url,
58 int error_code,
59 const base::string16& error_description,
60 bool was_ignored_by_handler) override;
61 void DidNavigateMainFrame(const LoadCommittedDetails& details,
62 const FrameNavigateParams& params) override;
63 void DidNavigateAnyFrame(RenderFrameHost* render_frame_host,
64 const LoadCommittedDetails& details,
65 const FrameNavigateParams& params) override;
66 void DocumentAvailableInMainFrame() override; 49 void DocumentAvailableInMainFrame() override;
67 void DocumentOnLoadCompletedInMainFrame() override; 50 void DocumentOnLoadCompletedInMainFrame() override;
68 void DocumentLoadedInFrame(RenderFrameHost* render_frame_host) override; 51 void DocumentLoadedInFrame(RenderFrameHost* render_frame_host) override;
69 void DidFinishLoad(RenderFrameHost* render_frame_host, 52 void DidFinishLoad(RenderFrameHost* render_frame_host,
70 const GURL& validated_url) override; 53 const GURL& validated_url) override;
71 void DidFailLoad(RenderFrameHost* render_frame_host, 54 void DidFailLoad(RenderFrameHost* render_frame_host,
72 const GURL& validated_url, 55 const GURL& validated_url,
73 int error_code, 56 int error_code,
74 const base::string16& error_description, 57 const base::string16& error_description,
75 bool was_ignored_by_handler) override; 58 bool was_ignored_by_handler) override;
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 bool is_loading_; 98 bool is_loading_;
116 99
117 bool web_contents_destroyed_; 100 bool web_contents_destroyed_;
118 101
119 DISALLOW_COPY_AND_ASSIGN(WebContentsObserverSanityChecker); 102 DISALLOW_COPY_AND_ASSIGN(WebContentsObserverSanityChecker);
120 }; 103 };
121 104
122 } // namespace content 105 } // namespace content
123 106
124 #endif // CONTENT_TEST_WEB_CONTENTS_OBSERVER_SANITY_CHECKER_H_ 107 #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