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

Side by Side Diff: content/public/browser/navigation_controller.h

Issue 30323002: [DRAFT] Create RenderFrameHostManager. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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_CONTROLLER_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_NAVIGATION_CONTROLLER_H_
6 #define CONTENT_PUBLIC_BROWSER_NAVIGATION_CONTROLLER_H_ 6 #define CONTENT_PUBLIC_BROWSER_NAVIGATION_CONTROLLER_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 // The url to load. This field is required. 109 // The url to load. This field is required.
110 GURL url; 110 GURL url;
111 111
112 // See LoadURLType comments above. 112 // See LoadURLType comments above.
113 LoadURLType load_type; 113 LoadURLType load_type;
114 114
115 // PageTransition for this load. See PageTransition for details. 115 // PageTransition for this load. See PageTransition for details.
116 // Note the default value in constructor below. 116 // Note the default value in constructor below.
117 PageTransition transition_type; 117 PageTransition transition_type;
118 118
119 int64 frame_tree_node_id;
120
119 // Referrer for this load. Empty if none. 121 // Referrer for this load. Empty if none.
120 Referrer referrer; 122 Referrer referrer;
121 123
122 // Any redirect URLs that occurred for this navigation before |url|. 124 // Any redirect URLs that occurred for this navigation before |url|.
123 // Defaults to an empty vector. 125 // Defaults to an empty vector.
124 std::vector<GURL> redirect_chain; 126 std::vector<GURL> redirect_chain;
125 127
126 // Extra headers for this load, separated by \n. 128 // Extra headers for this load, separated by \n.
127 std::string extra_headers; 129 std::string extra_headers;
128 130
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after
439 441
440 private: 442 private:
441 // This interface should only be implemented inside content. 443 // This interface should only be implemented inside content.
442 friend class NavigationControllerImpl; 444 friend class NavigationControllerImpl;
443 NavigationController() {} 445 NavigationController() {}
444 }; 446 };
445 447
446 } // namespace content 448 } // namespace content
447 449
448 #endif // CONTENT_PUBLIC_BROWSER_NAVIGATION_CONTROLLER_H_ 450 #endif // CONTENT_PUBLIC_BROWSER_NAVIGATION_CONTROLLER_H_
OLDNEW
« no previous file with comments | « content/browser/web_contents/web_contents_impl.cc ('k') | content/public/browser/navigation_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698