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

Side by Side Diff: content/browser/frame_host/navigator_delegate.h

Issue 317703004: Simplify AreURLsInPageNavigation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_BROWSER_FRAME_HOST_NAVIGATOR_DELEGATE_H_ 5 #ifndef CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_DELEGATE_H_
6 #define CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_DELEGATE_H_ 6 #define CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_DELEGATE_H_
7 7
8 #include "base/strings/string16.h" 8 #include "base/strings/string16.h"
9 #include "content/public/browser/invalidate_type.h" 9 #include "content/public/browser/invalidate_type.h"
10 #include "content/public/browser/navigation_controller.h" 10 #include "content/public/browser/navigation_controller.h"
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 // A navigation was committed in |render_frame_host|. 54 // A navigation was committed in |render_frame_host|.
55 virtual void DidCommitProvisionalLoad( 55 virtual void DidCommitProvisionalLoad(
56 RenderFrameHostImpl* render_frame_host, 56 RenderFrameHostImpl* render_frame_host,
57 const base::string16& frame_unique_name, 57 const base::string16& frame_unique_name,
58 bool is_main_frame, 58 bool is_main_frame,
59 const GURL& url, 59 const GURL& url,
60 PageTransition transition_type) {} 60 PageTransition transition_type) {}
61 61
62 // Handles post-navigation tasks in navigation BEFORE the entry has been 62 // Handles post-navigation tasks in navigation BEFORE the entry has been
63 // committed to the NavigationController. 63 // committed to the NavigationController.
64 virtual void DidNavigateMainFramePreCommit( 64 virtual void DidNavigateMainFramePreCommit(bool navigation_is_within_page) {}
65 const FrameHostMsg_DidCommitProvisionalLoad_Params& params) {}
66 65
67 // Handles post-navigation tasks in navigation AFTER the entry has been 66 // Handles post-navigation tasks in navigation AFTER the entry has been
68 // committed to the NavigationController. Note that the NavigationEntry is 67 // committed to the NavigationController. Note that the NavigationEntry is
69 // not provided since it may be invalid/changed after being committed. The 68 // not provided since it may be invalid/changed after being committed. The
70 // NavigationController's last committed entry is for this navigation. 69 // NavigationController's last committed entry is for this navigation.
71 virtual void DidNavigateMainFramePostCommit( 70 virtual void DidNavigateMainFramePostCommit(
72 const LoadCommittedDetails& details, 71 const LoadCommittedDetails& details,
73 const FrameHostMsg_DidCommitProvisionalLoad_Params& params) {} 72 const FrameHostMsg_DidCommitProvisionalLoad_Params& params) {}
74 virtual void DidNavigateAnyFramePostCommit( 73 virtual void DidNavigateAnyFramePostCommit(
75 RenderFrameHostImpl* render_frame_host, 74 RenderFrameHostImpl* render_frame_host,
(...skipping 25 matching lines...) Expand all
101 const OpenURLParams& params) {} 100 const OpenURLParams& params) {}
102 101
103 // Returns whether URLs for aborted browser-initiated navigations should be 102 // Returns whether URLs for aborted browser-initiated navigations should be
104 // preserved in the omnibox. Defaults to false. 103 // preserved in the omnibox. Defaults to false.
105 virtual bool ShouldPreserveAbortedURLs(); 104 virtual bool ShouldPreserveAbortedURLs();
106 }; 105 };
107 106
108 } // namspace content 107 } // namspace content
109 108
110 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_DELEGATE_H_ 109 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_DELEGATE_H_
OLDNEW
« no previous file with comments | « content/browser/frame_host/navigation_controller_impl_unittest.cc ('k') | content/browser/frame_host/navigator_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698