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

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

Issue 2666193002: Switch RenderViewContextMenu to use RequestOpenURL (Closed)
Patch Set: CHECK site instance matches Created 3 years, 10 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
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 // PageNavigator defines an interface that can be used to express the user's 5 // PageNavigator defines an interface that can be used to express the user's
6 // intention to navigate to a particular URL. The implementing class should 6 // intention to navigate to a particular URL. The implementing class should
7 // perform the navigation. 7 // perform the navigation.
8 8
9 #ifndef CONTENT_PUBLIC_BROWSER_PAGE_NAVIGATOR_H_ 9 #ifndef CONTENT_PUBLIC_BROWSER_PAGE_NAVIGATOR_H_
10 #define CONTENT_PUBLIC_BROWSER_PAGE_NAVIGATOR_H_ 10 #define CONTENT_PUBLIC_BROWSER_PAGE_NAVIGATOR_H_
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 scoped_refptr<ResourceRequestBody> post_data; 64 scoped_refptr<ResourceRequestBody> post_data;
65 65
66 // Extra headers to add to the request for this page. Headers are 66 // Extra headers to add to the request for this page. Headers are
67 // represented as "<name>: <value>" and separated by \r\n. The entire string 67 // represented as "<name>: <value>" and separated by \r\n. The entire string
68 // is terminated by \r\n. May be empty if no extra headers are needed. 68 // is terminated by \r\n. May be empty if no extra headers are needed.
69 std::string extra_headers; 69 std::string extra_headers;
70 70
71 // The browser-global FrameTreeNode ID or -1 to indicate the main frame. 71 // The browser-global FrameTreeNode ID or -1 to indicate the main frame.
72 int frame_tree_node_id; 72 int frame_tree_node_id;
73 73
74 // Routing id of the source RenderFrameHost.
75 int render_frame_id;
nasko 2017/02/15 00:58:07 I'm sorry I missed this on the previous iterations
Patrick Noland 2017/02/15 22:30:42 Done.
76
77 // Process id of the source RenderFrameHost.
78 int render_process_id;
79
74 // The disposition requested by the navigation source. 80 // The disposition requested by the navigation source.
75 WindowOpenDisposition disposition; 81 WindowOpenDisposition disposition;
76 82
77 // The transition type of navigation. 83 // The transition type of navigation.
78 ui::PageTransition transition; 84 ui::PageTransition transition;
79 85
80 // Whether this navigation is initiated by the renderer process. 86 // Whether this navigation is initiated by the renderer process.
81 bool is_renderer_initiated; 87 bool is_renderer_initiated;
82 88
83 // Indicates whether this navigation should replace the current 89 // Indicates whether this navigation should replace the current
(...skipping 18 matching lines...) Expand all
102 // Opens a URL with the given disposition. The transition specifies how this 108 // Opens a URL with the given disposition. The transition specifies how this
103 // navigation should be recorded in the history system (for example, typed). 109 // navigation should be recorded in the history system (for example, typed).
104 // Returns the WebContents the URL is opened in, or nullptr if the URL wasn't 110 // Returns the WebContents the URL is opened in, or nullptr if the URL wasn't
105 // opened immediately. 111 // opened immediately.
106 virtual WebContents* OpenURL(const OpenURLParams& params) = 0; 112 virtual WebContents* OpenURL(const OpenURLParams& params) = 0;
107 }; 113 };
108 114
109 } // namespace content 115 } // namespace content
110 116
111 #endif // CONTENT_PUBLIC_BROWSER_PAGE_NAVIGATOR_H_ 117 #endif // CONTENT_PUBLIC_BROWSER_PAGE_NAVIGATOR_H_
OLDNEW
« no previous file with comments | « content/browser/web_contents/web_contents_impl.cc ('k') | content/public/browser/web_contents_observer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698