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

Unified Diff: content/public/browser/page_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, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/public/browser/navigation_controller.h ('k') | content/public/browser/page_navigator.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/page_navigator.h
diff --git a/content/public/browser/page_navigator.h b/content/public/browser/page_navigator.h
index 6c633ba749a4ed1dc0c294a7602b1c7946e5518b..912cab83ea62ee7f7503458bf1399bf0b4830029 100644
--- a/content/public/browser/page_navigator.h
+++ b/content/public/browser/page_navigator.h
@@ -33,7 +33,7 @@ struct CONTENT_EXPORT OpenURLParams {
bool is_renderer_initiated);
OpenURLParams(const GURL& url,
const Referrer& referrer,
- int64 frame_tree_node_id,
+ int frame_tree_node_id,
WindowOpenDisposition disposition,
ui::PageTransition transition,
bool is_renderer_initiated);
@@ -65,7 +65,7 @@ struct CONTENT_EXPORT OpenURLParams {
std::string extra_headers;
// The browser-global FrameTreeNode ID or -1 to indicate the main frame.
- int64 frame_tree_node_id;
+ int frame_tree_node_id;
// The disposition requested by the navigation source.
WindowOpenDisposition disposition;
« no previous file with comments | « content/public/browser/navigation_controller.h ('k') | content/public/browser/page_navigator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698