| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |