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

Side by Side Diff: chrome/browser/ui/browser_navigator.h

Issue 1093923003: Change FrameTreeNode id from int64 to int. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Change FrameTreeNode id from int64 to int Created 5 years, 7 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/frame_accessibility.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 CHROME_BROWSER_UI_BROWSER_NAVIGATOR_H_ 5 #ifndef CHROME_BROWSER_UI_BROWSER_NAVIGATOR_H_
6 #define CHROME_BROWSER_UI_BROWSER_NAVIGATOR_H_ 6 #define CHROME_BROWSER_UI_BROWSER_NAVIGATOR_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 NavigateParams(Profile* profile, 60 NavigateParams(Profile* profile,
61 const GURL& a_url, 61 const GURL& a_url,
62 ui::PageTransition a_transition); 62 ui::PageTransition a_transition);
63 ~NavigateParams(); 63 ~NavigateParams();
64 64
65 // The URL/referrer to be loaded. Ignored if |target_contents| is non-NULL. 65 // The URL/referrer to be loaded. Ignored if |target_contents| is non-NULL.
66 GURL url; 66 GURL url;
67 content::Referrer referrer; 67 content::Referrer referrer;
68 68
69 // The browser-global ID of the frame to navigate, or -1 for the main frame. 69 // The browser-global ID of the frame to navigate, or -1 for the main frame.
70 int64 frame_tree_node_id; 70 int frame_tree_node_id;
71 71
72 // Any redirect URLs that occurred for this navigation before |url|. 72 // Any redirect URLs that occurred for this navigation before |url|.
73 // Usually empty. 73 // Usually empty.
74 std::vector<GURL> redirect_chain; 74 std::vector<GURL> redirect_chain;
75 75
76 // Indicates whether this navigation will be sent using POST. 76 // Indicates whether this navigation will be sent using POST.
77 // The POST method is limited support for basic POST data by leveraging 77 // The POST method is limited support for basic POST data by leveraging
78 // NavigationController::LOAD_TYPE_BROWSER_INITIATED_HTTP_POST. 78 // NavigationController::LOAD_TYPE_BROWSER_INITIATED_HTTP_POST.
79 // It is not for things like file uploads. 79 // It is not for things like file uploads.
80 bool uses_post; 80 bool uses_post;
(...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 // Navigates according to the configuration specified in |params|. 253 // Navigates according to the configuration specified in |params|.
254 void Navigate(NavigateParams* params); 254 void Navigate(NavigateParams* params);
255 255
256 // Returns true if the url is allowed to open in incognito window. 256 // Returns true if the url is allowed to open in incognito window.
257 bool IsURLAllowedInIncognito(const GURL& url, 257 bool IsURLAllowedInIncognito(const GURL& url,
258 content::BrowserContext* browser_context); 258 content::BrowserContext* browser_context);
259 259
260 } // namespace chrome 260 } // namespace chrome
261 261
262 #endif // CHROME_BROWSER_UI_BROWSER_NAVIGATOR_H_ 262 #endif // CHROME_BROWSER_UI_BROWSER_NAVIGATOR_H_
OLDNEW
« no previous file with comments | « no previous file | content/browser/frame_host/frame_accessibility.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698