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

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

Issue 379143002: PlzNavigate: implement RequestNavigation in the no live renderer case (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed Nasko's comments + added missing file Created 6 years, 4 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
« no previous file with comments | « no previous file | content/browser/frame_host/navigator.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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_COMMIT_INFO_H_
6 #define CONTENT_BROWSER_FRAME_HOST_NAVIGATION_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
18 // until receiving the response. Initialized on the IO thread, then passed to
19 // the UI thread where it should be used to send a FrameMsg_CommitNavigation
20 // message to the renderer.
21 struct NavigationCommitInfo {
22 NavigationCommitInfo() {};
23
24 // The url that is actually being loaded.
25 GURL navigation_url;
nasko 2014/07/24 12:03:58 Does the new renderer care about what redirects th
clamy 2014/07/24 12:24:50 Done.
26
27 // A url to be subsequently requested by the renderer as the main resource for
28 // the frame.
29 GURL blob_url;
nasko 2014/07/24 12:03:58 nit: Blob refers to the type of technology we use
clamy 2014/07/24 12:24:50 Done.
30
31 // The navigationStart time to expose to JS for this navigation.
32 // TODO(clamy): Add the other values that matter to the Navigation Timing API.
33 base::TimeTicks browser_navigation_start;
34 };
35
36 } // namespace content
37
38 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_COMMIT_INFO_H_
OLDNEW
« no previous file with comments | « no previous file | content/browser/frame_host/navigator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698