Chromium Code Reviews| 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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 110 const Referrer& sanitized_referrer, | 110 const Referrer& sanitized_referrer, |
| 111 bool has_user_gesture, | 111 bool has_user_gesture, |
| 112 ui::PageTransition transition, | 112 ui::PageTransition transition, |
| 113 bool is_external_protocol) override; | 113 bool is_external_protocol) override; |
| 114 NavigationThrottle::ThrottleCheckResult CallWillRedirectRequestForTesting( | 114 NavigationThrottle::ThrottleCheckResult CallWillRedirectRequestForTesting( |
| 115 const GURL& new_url, | 115 const GURL& new_url, |
| 116 bool new_method_is_post, | 116 bool new_method_is_post, |
| 117 const GURL& new_referrer_url, | 117 const GURL& new_referrer_url, |
| 118 bool new_is_external_protocol) override; | 118 bool new_is_external_protocol) override; |
| 119 NavigationThrottle::ThrottleCheckResult CallWillProcessResponseForTesting( | 119 NavigationThrottle::ThrottleCheckResult CallWillProcessResponseForTesting( |
| 120 RenderFrameHost* render_frame_host) override; | 120 RenderFrameHost* render_frame_host, |
| 121 const std::string& raw_response_header) override; | |
|
bengr
2016/09/13 23:18:18
#include <string>
megjablon
2016/09/13 23:27:12
Done.
| |
| 122 void CallDidCommitNavigationForTesting(const GURL& url) override; | |
| 121 | 123 |
| 122 NavigationData* GetNavigationData() override; | 124 NavigationData* GetNavigationData() override; |
| 123 | 125 |
| 124 NavigatorDelegate* GetDelegate() const; | 126 NavigatorDelegate* GetDelegate() const; |
| 125 | 127 |
| 126 RequestContextType GetRequestContextType() const; | 128 RequestContextType GetRequestContextType() const; |
| 127 | 129 |
| 128 // Get the unique id from the NavigationEntry associated with this | 130 // Get the unique id from the NavigationEntry associated with this |
| 129 // NavigationHandle. Note that a synchronous, renderer-initiated navigation | 131 // NavigationHandle. Note that a synchronous, renderer-initiated navigation |
| 130 // will not have a NavigationEntry associated with it, and this will return 0. | 132 // will not have a NavigationEntry associated with it, and this will return 0. |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 324 std::unique_ptr<NavigationData> navigation_data_; | 326 std::unique_ptr<NavigationData> navigation_data_; |
| 325 | 327 |
| 326 SSLStatus ssl_status_; | 328 SSLStatus ssl_status_; |
| 327 | 329 |
| 328 DISALLOW_COPY_AND_ASSIGN(NavigationHandleImpl); | 330 DISALLOW_COPY_AND_ASSIGN(NavigationHandleImpl); |
| 329 }; | 331 }; |
| 330 | 332 |
| 331 } // namespace content | 333 } // namespace content |
| 332 | 334 |
| 333 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_HANDLE_IMPL_H_ | 335 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_HANDLE_IMPL_H_ |
| OLD | NEW |