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

Side by Side Diff: content/browser/web_contents/web_contents_impl.h

Issue 1202593002: Move browser-to-renderer opener plumbing to frame routing IDs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@opener-create-opener-render-views
Patch Set: Remove suppress_opener Created 5 years, 5 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 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
7 7
8 #include <map> 8 #include <map>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 551 matching lines...) Expand 10 before | Expand all | Expand 10 after
562 bool PreHandleGestureEvent(const blink::WebGestureEvent& event) override; 562 bool PreHandleGestureEvent(const blink::WebGestureEvent& event) override;
563 void DidSendScreenRects(RenderWidgetHostImpl* rwh) override; 563 void DidSendScreenRects(RenderWidgetHostImpl* rwh) override;
564 BrowserAccessibilityManager* GetRootBrowserAccessibilityManager() override; 564 BrowserAccessibilityManager* GetRootBrowserAccessibilityManager() override;
565 BrowserAccessibilityManager* GetOrCreateRootBrowserAccessibilityManager() 565 BrowserAccessibilityManager* GetOrCreateRootBrowserAccessibilityManager()
566 override; 566 override;
567 567
568 // RenderFrameHostManager::Delegate ------------------------------------------ 568 // RenderFrameHostManager::Delegate ------------------------------------------
569 569
570 bool CreateRenderViewForRenderManager( 570 bool CreateRenderViewForRenderManager(
571 RenderViewHost* render_view_host, 571 RenderViewHost* render_view_host,
572 int opener_route_id, 572 int opener_frame_routing_id,
573 int proxy_routing_id, 573 int proxy_routing_id,
574 const FrameReplicationState& replicated_frame_state, 574 const FrameReplicationState& replicated_frame_state,
575 bool for_main_frame_navigation) override; 575 bool for_main_frame_navigation) override;
576 bool CreateRenderFrameForRenderManager(RenderFrameHost* render_frame_host, 576 bool CreateRenderFrameForRenderManager(RenderFrameHost* render_frame_host,
577 int parent_routing_id, 577 int parent_routing_id,
578 int previous_sibling_routing_id, 578 int previous_sibling_routing_id,
579 int proxy_routing_id) override; 579 int proxy_routing_id) override;
580 void BeforeUnloadFiredFromRenderManager( 580 void BeforeUnloadFiredFromRenderManager(
581 bool proceed, 581 bool proceed,
582 const base::TimeTicks& proceed_time, 582 const base::TimeTicks& proceed_time,
(...skipping 714 matching lines...) Expand 10 before | Expand all | Expand 10 after
1297 // Adds/removes a callback called on creation of each new WebContents. 1297 // Adds/removes a callback called on creation of each new WebContents.
1298 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); 1298 static void AddCreatedCallbackForTesting(const CreatedCallback& callback);
1299 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); 1299 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback);
1300 1300
1301 DISALLOW_COPY_AND_ASSIGN(FriendZone); 1301 DISALLOW_COPY_AND_ASSIGN(FriendZone);
1302 }; 1302 };
1303 1303
1304 } // namespace content 1304 } // namespace content
1305 1305
1306 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ 1306 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/site_per_process_browsertest.cc ('k') | content/browser/web_contents/web_contents_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698