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

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: 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
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 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 const std::string& unique_name) override; 61 const std::string& unique_name) override;
62 void RequestOpenURL(RenderFrameHostImpl* render_frame_host, 62 void RequestOpenURL(RenderFrameHostImpl* render_frame_host,
63 const GURL& url, 63 const GURL& url,
64 SiteInstance* source_site_instance, 64 SiteInstance* source_site_instance,
65 const Referrer& referrer, 65 const Referrer& referrer,
66 WindowOpenDisposition disposition, 66 WindowOpenDisposition disposition,
67 bool should_replace_current_entry, 67 bool should_replace_current_entry,
68 bool user_gesture) override; 68 bool user_gesture) override;
69 void RequestTransferURL(RenderFrameHostImpl* render_frame_host, 69 void RequestTransferURL(RenderFrameHostImpl* render_frame_host,
70 const GURL& url, 70 const GURL& url,
71 SiteInstance* source_site_instance,
71 const std::vector<GURL>& redirect_chain, 72 const std::vector<GURL>& redirect_chain,
72 const Referrer& referrer, 73 const Referrer& referrer,
73 ui::PageTransition page_transition, 74 ui::PageTransition page_transition,
74 const GlobalRequestID& transferred_global_request_id, 75 const GlobalRequestID& transferred_global_request_id,
75 bool should_replace_current_entry) override; 76 bool should_replace_current_entry) override;
76 void OnBeforeUnloadACK(FrameTreeNode* frame_tree_node, bool proceed) override; 77 void OnBeforeUnloadACK(FrameTreeNode* frame_tree_node, bool proceed) override;
77 void OnBeginNavigation(FrameTreeNode* frame_tree_node, 78 void OnBeginNavigation(FrameTreeNode* frame_tree_node,
78 const CommonNavigationParams& common_params, 79 const CommonNavigationParams& common_params,
79 const BeginNavigationParams& begin_params, 80 const BeginNavigationParams& begin_params,
80 scoped_refptr<ResourceRequestBody> body) override; 81 scoped_refptr<ResourceRequestBody> body) override;
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
148 NavigatorDelegate* delegate_; 149 NavigatorDelegate* delegate_;
149 150
150 scoped_ptr<NavigatorImpl::NavigationMetricsData> navigation_data_; 151 scoped_ptr<NavigatorImpl::NavigationMetricsData> navigation_data_;
151 152
152 DISALLOW_COPY_AND_ASSIGN(NavigatorImpl); 153 DISALLOW_COPY_AND_ASSIGN(NavigatorImpl);
153 }; 154 };
154 155
155 } // namespace content 156 } // namespace content
156 157
157 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_ 158 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698