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

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

Issue 1715993002: OOPIF: Fix remote frame navigations from extension pages. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Resolve mid-air collision in FlagExpectations/site-per-process Created 4 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
« no previous file with comments | « content/browser/frame_host/navigator.h ('k') | content/browser/frame_host/navigator_impl.cc » ('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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_ 5 #ifndef CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_
6 #define CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_ 6 #define CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_
7 7
8 #include "base/containers/scoped_ptr_hash_map.h" 8 #include "base/containers/scoped_ptr_hash_map.h"
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 const std::string& unique_name) override; 59 const std::string& unique_name) override;
60 void RequestOpenURL(RenderFrameHostImpl* render_frame_host, 60 void RequestOpenURL(RenderFrameHostImpl* render_frame_host,
61 const GURL& url, 61 const GURL& url,
62 SiteInstance* source_site_instance, 62 SiteInstance* source_site_instance,
63 const Referrer& referrer, 63 const Referrer& referrer,
64 WindowOpenDisposition disposition, 64 WindowOpenDisposition disposition,
65 bool should_replace_current_entry, 65 bool should_replace_current_entry,
66 bool user_gesture) override; 66 bool user_gesture) override;
67 void RequestTransferURL(RenderFrameHostImpl* render_frame_host, 67 void RequestTransferURL(RenderFrameHostImpl* render_frame_host,
68 const GURL& url, 68 const GURL& url,
69 SiteInstance* source_site_instance,
69 const std::vector<GURL>& redirect_chain, 70 const std::vector<GURL>& redirect_chain,
70 const Referrer& referrer, 71 const Referrer& referrer,
71 ui::PageTransition page_transition, 72 ui::PageTransition page_transition,
72 const GlobalRequestID& transferred_global_request_id, 73 const GlobalRequestID& transferred_global_request_id,
73 bool should_replace_current_entry) override; 74 bool should_replace_current_entry) override;
74 void OnBeforeUnloadACK(FrameTreeNode* frame_tree_node, bool proceed) override; 75 void OnBeforeUnloadACK(FrameTreeNode* frame_tree_node, bool proceed) override;
75 void OnBeginNavigation(FrameTreeNode* frame_tree_node, 76 void OnBeginNavigation(FrameTreeNode* frame_tree_node,
76 const CommonNavigationParams& common_params, 77 const CommonNavigationParams& common_params,
77 const BeginNavigationParams& begin_params, 78 const BeginNavigationParams& begin_params,
78 scoped_refptr<ResourceRequestBody> body) override; 79 scoped_refptr<ResourceRequestBody> body) override;
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
147 NavigatorDelegate* delegate_; 148 NavigatorDelegate* delegate_;
148 149
149 scoped_ptr<NavigatorImpl::NavigationMetricsData> navigation_data_; 150 scoped_ptr<NavigatorImpl::NavigationMetricsData> navigation_data_;
150 151
151 DISALLOW_COPY_AND_ASSIGN(NavigatorImpl); 152 DISALLOW_COPY_AND_ASSIGN(NavigatorImpl);
152 }; 153 };
153 154
154 } // namespace content 155 } // namespace content
155 156
156 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_ 157 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/frame_host/navigator.h ('k') | content/browser/frame_host/navigator_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698