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_PUBLIC_BROWSER_NAVIGATION_HANDLE_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_NAVIGATION_HANDLE_H_ |
6 #define CONTENT_PUBLIC_BROWSER_NAVIGATION_HANDLE_H_ | 6 #define CONTENT_PUBLIC_BROWSER_NAVIGATION_HANDLE_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
82 // browser process. Corresponds to Navigation Timing API. | 82 // browser process. Corresponds to Navigation Timing API. |
83 virtual const base::TimeTicks& NavigationStart() = 0; | 83 virtual const base::TimeTicks& NavigationStart() = 0; |
84 | 84 |
85 // Parameters available at network request start time ------------------------ | 85 // Parameters available at network request start time ------------------------ |
86 // | 86 // |
87 // The following parameters are only available when the network request is | 87 // The following parameters are only available when the network request is |
88 // made for the navigation (or at commit time if no network request is made). | 88 // made for the navigation (or at commit time if no network request is made). |
89 // This corresponds to NavigationThrottle::WillSendRequest. They should not | 89 // This corresponds to NavigationThrottle::WillSendRequest. They should not |
90 // be queried before that. | 90 // be queried before that. |
91 | 91 |
92 // Whether the navigation is a POST or a GET. This may change during the | 92 // HTTP method of the navigation (i.e. a POST or a GET). This may change |
93 // navigation when encountering a server redirect. | 93 // during the navigation when encountering a server redirect. |
94 virtual bool IsPost() = 0; | 94 virtual const std::string& GetMethod() = 0; |
Łukasz Anforowicz
2016/06/01 16:28:38
Hmmm... does the IsPost -> GetMethod change still
Charlie Reis
2016/06/01 23:46:32
Heh. I think we just need to pick an approach and
Łukasz Anforowicz
2016/06/02 22:07:04
In this case, let me go back to NavigationHandle::
| |
95 | 95 |
96 // Returns a sanitized version of the referrer for this request. | 96 // Returns a sanitized version of the referrer for this request. |
97 virtual const Referrer& GetReferrer() = 0; | 97 virtual const Referrer& GetReferrer() = 0; |
98 | 98 |
99 // Whether the navigation was initiated by a user gesture. Note that this | 99 // Whether the navigation was initiated by a user gesture. Note that this |
100 // will return false for browser-initiated navigations. | 100 // will return false for browser-initiated navigations. |
101 // TODO(clamy): when PlzNavigate launches, this should return true for | 101 // TODO(clamy): when PlzNavigate launches, this should return true for |
102 // browser-initiated navigations. | 102 // browser-initiated navigations. |
103 virtual bool HasUserGesture() = 0; | 103 virtual bool HasUserGesture() = 0; |
104 | 104 |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
180 | 180 |
181 // The NavigationData that the embedder returned from | 181 // The NavigationData that the embedder returned from |
182 // ResourceDispatcherHostDelegate::GetNavigationData during commit. This will | 182 // ResourceDispatcherHostDelegate::GetNavigationData during commit. This will |
183 // be a clone of the NavigationData. | 183 // be a clone of the NavigationData. |
184 virtual NavigationData* GetNavigationData() = 0; | 184 virtual NavigationData* GetNavigationData() = 0; |
185 }; | 185 }; |
186 | 186 |
187 } // namespace content | 187 } // namespace content |
188 | 188 |
189 #endif // CONTENT_PUBLIC_BROWSER_NAVIGATION_HANDLE_H_ | 189 #endif // CONTENT_PUBLIC_BROWSER_NAVIGATION_HANDLE_H_ |
OLD | NEW |