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

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

Issue 580133002: Update entry page type to include error pages when appropriate. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Compile fix for unit_tests Created 6 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 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 51
52 // A redirect was processed in |render_frame_host| during a provisional load. 52 // A redirect was processed in |render_frame_host| during a provisional load.
53 virtual void DidRedirectProvisionalLoad( 53 virtual void DidRedirectProvisionalLoad(
54 RenderFrameHostImpl* render_frame_host, 54 RenderFrameHostImpl* render_frame_host,
55 const GURL& validated_target_url) {} 55 const GURL& validated_target_url) {}
56 56
57 // A navigation was committed in |render_frame_host|. 57 // A navigation was committed in |render_frame_host|.
58 virtual void DidCommitProvisionalLoad( 58 virtual void DidCommitProvisionalLoad(
59 RenderFrameHostImpl* render_frame_host, 59 RenderFrameHostImpl* render_frame_host,
60 const GURL& url, 60 const GURL& url,
61 bool url_is_unreachable,
61 ui::PageTransition transition_type) {} 62 ui::PageTransition transition_type) {}
62 63
63 // Handles post-navigation tasks in navigation BEFORE the entry has been 64 // Handles post-navigation tasks in navigation BEFORE the entry has been
64 // committed to the NavigationController. 65 // committed to the NavigationController.
65 virtual void DidNavigateMainFramePreCommit(bool navigation_is_within_page) {} 66 virtual void DidNavigateMainFramePreCommit(bool navigation_is_within_page) {}
66 67
67 // Handles post-navigation tasks in navigation AFTER the entry has been 68 // Handles post-navigation tasks in navigation AFTER the entry has been
68 // committed to the NavigationController. Note that the NavigationEntry is 69 // committed to the NavigationController. Note that the NavigationEntry is
69 // not provided since it may be invalid/changed after being committed. The 70 // not provided since it may be invalid/changed after being committed. The
70 // NavigationController's last committed entry is for this navigation. 71 // NavigationController's last committed entry is for this navigation.
(...skipping 30 matching lines...) Expand all
101 const OpenURLParams& params) {} 102 const OpenURLParams& params) {}
102 103
103 // Returns whether URLs for aborted browser-initiated navigations should be 104 // Returns whether URLs for aborted browser-initiated navigations should be
104 // preserved in the omnibox. Defaults to false. 105 // preserved in the omnibox. Defaults to false.
105 virtual bool ShouldPreserveAbortedURLs(); 106 virtual bool ShouldPreserveAbortedURLs();
106 }; 107 };
107 108
108 } // namspace content 109 } // namspace content
109 110
110 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_DELEGATE_H_ 111 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698