| 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 554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 565 BrowserAccessibilityManager* GetRootBrowserAccessibilityManager() override; | 565 BrowserAccessibilityManager* GetRootBrowserAccessibilityManager() override; |
| 566 BrowserAccessibilityManager* GetOrCreateRootBrowserAccessibilityManager() | 566 BrowserAccessibilityManager* GetOrCreateRootBrowserAccessibilityManager() |
| 567 override; | 567 override; |
| 568 | 568 |
| 569 // RenderFrameHostManager::Delegate ------------------------------------------ | 569 // RenderFrameHostManager::Delegate ------------------------------------------ |
| 570 | 570 |
| 571 bool CreateRenderViewForRenderManager( | 571 bool CreateRenderViewForRenderManager( |
| 572 RenderViewHost* render_view_host, | 572 RenderViewHost* render_view_host, |
| 573 int opener_route_id, | 573 int opener_route_id, |
| 574 int proxy_routing_id, | 574 int proxy_routing_id, |
| 575 const FrameReplicationState& replicated_frame_state, |
| 575 bool for_main_frame_navigation) override; | 576 bool for_main_frame_navigation) override; |
| 576 bool CreateRenderFrameForRenderManager(RenderFrameHost* render_frame_host, | 577 bool CreateRenderFrameForRenderManager(RenderFrameHost* render_frame_host, |
| 577 int parent_routing_id, | 578 int parent_routing_id, |
| 578 int previous_sibling_routing_id, | 579 int previous_sibling_routing_id, |
| 579 int proxy_routing_id) override; | 580 int proxy_routing_id) override; |
| 580 void BeforeUnloadFiredFromRenderManager( | 581 void BeforeUnloadFiredFromRenderManager( |
| 581 bool proceed, | 582 bool proceed, |
| 582 const base::TimeTicks& proceed_time, | 583 const base::TimeTicks& proceed_time, |
| 583 bool* proceed_to_fire_unload) override; | 584 bool* proceed_to_fire_unload) override; |
| 584 void RenderProcessGoneFromRenderManager( | 585 void RenderProcessGoneFromRenderManager( |
| (...skipping 699 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1284 // Adds/removes a callback called on creation of each new WebContents. | 1285 // Adds/removes a callback called on creation of each new WebContents. |
| 1285 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); | 1286 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1286 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); | 1287 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1287 | 1288 |
| 1288 DISALLOW_COPY_AND_ASSIGN(FriendZone); | 1289 DISALLOW_COPY_AND_ASSIGN(FriendZone); |
| 1289 }; | 1290 }; |
| 1290 | 1291 |
| 1291 } // namespace content | 1292 } // namespace content |
| 1292 | 1293 |
| 1293 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1294 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |