OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #ifndef CONTENT_BROWSER_FRAME_HOST_NAVIGATION_BEFORE_COMMIT_INFO_H_ | |
6 #define CONTENT_BROWSER_FRAME_HOST_NAVIGATION_BEFORE_COMMIT_INFO_H_ | |
7 | |
8 #include <string> | |
9 | |
10 #include "base/basictypes.h" | |
11 #include "content/public/common/page_transition_types.h" | |
12 #include "content/public/common/referrer.h" | |
13 #include "url/gurl.h" | |
14 | |
15 namespace content { | |
16 | |
17 // Holds the parameters determined during the load of a navigation request | |
Charlie Reis
2014/08/08 20:25:27
Let's add "// PlzNavigate: " here.
clamy
2014/08/12 12:13:15
Done.
| |
18 // until receiving the response. Initialized on the IO thread, then passed to | |
Charlie Reis
2014/08/08 20:25:27
nit: until the response is received.
clamy
2014/08/12 12:13:15
Done.
| |
19 // the UI thread where it should be used to send a FrameMsg_CommitNavigation | |
20 // message to the renderer. | |
21 struct NavigationBeforeCommitInfo { | |
22 NavigationBeforeCommitInfo() {}; | |
23 | |
24 // The url that is actually being loaded. | |
25 GURL navigation_url; | |
26 | |
27 // A unique blob url to be subsequently requested by the renderer as the main | |
28 // resource for the frame, that will be used to find the associated stream of | |
29 // data. | |
30 GURL stream_url; | |
31 | |
32 // TODO(clamy): Maybe add the redirect chain if needed by the renderer. | |
33 | |
34 // The navigationStart time to expose to JS for this navigation. | |
35 // TODO(clamy): Add the other values that matter to the Navigation Timing API. | |
36 base::TimeTicks browser_navigation_start; | |
37 }; | |
38 | |
39 } // namespace content | |
40 | |
41 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_BEFORE_COMMIT_INFO_H_ | |
OLD | NEW |