OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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_NAVIGATION_HANDLE_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_NAVIGATION_HANDLE_IMPL_H_ |
6 #define CONTENT_BROWSER_FRAME_HOST_NAVIGATION_HANDLE_IMPL_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_NAVIGATION_HANDLE_IMPL_H_ |
7 | 7 |
8 #include "content/public/browser/navigation_handle.h" | 8 #include "content/public/browser/navigation_handle.h" |
9 | 9 |
10 #include <stddef.h> | 10 #include <stddef.h> |
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 int GetFrameTreeNodeId() override; | 121 int GetFrameTreeNodeId() override; |
122 int GetParentFrameTreeNodeId() override; | 122 int GetParentFrameTreeNodeId() override; |
123 const base::TimeTicks& NavigationStart() override; | 123 const base::TimeTicks& NavigationStart() override; |
124 bool IsPost() override; | 124 bool IsPost() override; |
125 const Referrer& GetReferrer() override; | 125 const Referrer& GetReferrer() override; |
126 bool HasUserGesture() override; | 126 bool HasUserGesture() override; |
127 ui::PageTransition GetPageTransition() override; | 127 ui::PageTransition GetPageTransition() override; |
128 bool IsExternalProtocol() override; | 128 bool IsExternalProtocol() override; |
129 net::Error GetNetErrorCode() override; | 129 net::Error GetNetErrorCode() override; |
130 RenderFrameHostImpl* GetRenderFrameHost() override; | 130 RenderFrameHostImpl* GetRenderFrameHost() override; |
131 bool IsSamePage() override; | 131 bool IsSameDocument() override; |
132 bool HasCommitted() override; | 132 bool HasCommitted() override; |
133 bool IsErrorPage() override; | 133 bool IsErrorPage() override; |
134 bool DidReplaceEntry() override; | 134 bool DidReplaceEntry() override; |
135 bool ShouldUpdateHistory() override; | 135 bool ShouldUpdateHistory() override; |
136 const GURL& GetPreviousURL() override; | 136 const GURL& GetPreviousURL() override; |
137 net::HostPortPair GetSocketAddress() override; | 137 net::HostPortPair GetSocketAddress() override; |
138 const net::HttpResponseHeaders* GetResponseHeaders() override; | 138 const net::HttpResponseHeaders* GetResponseHeaders() override; |
139 net::HttpResponseInfo::ConnectionInfo GetConnectionInfo() override; | 139 net::HttpResponseInfo::ConnectionInfo GetConnectionInfo() override; |
140 void Resume() override; | 140 void Resume() override; |
141 void CancelDeferredNavigation( | 141 void CancelDeferredNavigation( |
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
504 NavigationType navigation_type_; | 504 NavigationType navigation_type_; |
505 | 505 |
506 base::WeakPtrFactory<NavigationHandleImpl> weak_factory_; | 506 base::WeakPtrFactory<NavigationHandleImpl> weak_factory_; |
507 | 507 |
508 DISALLOW_COPY_AND_ASSIGN(NavigationHandleImpl); | 508 DISALLOW_COPY_AND_ASSIGN(NavigationHandleImpl); |
509 }; | 509 }; |
510 | 510 |
511 } // namespace content | 511 } // namespace content |
512 | 512 |
513 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_HANDLE_IMPL_H_ | 513 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_HANDLE_IMPL_H_ |
OLD | NEW |