| 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 574 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 585 | 585 |
| 586 bool CreateRenderViewForRenderManager( | 586 bool CreateRenderViewForRenderManager( |
| 587 RenderViewHost* render_view_host, | 587 RenderViewHost* render_view_host, |
| 588 int opener_frame_routing_id, | 588 int opener_frame_routing_id, |
| 589 int proxy_routing_id, | 589 int proxy_routing_id, |
| 590 const FrameReplicationState& replicated_frame_state, | 590 const FrameReplicationState& replicated_frame_state, |
| 591 bool for_main_frame_navigation) override; | 591 bool for_main_frame_navigation) override; |
| 592 bool CreateRenderFrameForRenderManager(RenderFrameHost* render_frame_host, | 592 bool CreateRenderFrameForRenderManager(RenderFrameHost* render_frame_host, |
| 593 int parent_routing_id, | 593 int parent_routing_id, |
| 594 int previous_sibling_routing_id, | 594 int previous_sibling_routing_id, |
| 595 int proxy_routing_id) override; | 595 int proxy_routing_id, |
| 596 int opener_routing_id) override; |
| 596 void BeforeUnloadFiredFromRenderManager( | 597 void BeforeUnloadFiredFromRenderManager( |
| 597 bool proceed, | 598 bool proceed, |
| 598 const base::TimeTicks& proceed_time, | 599 const base::TimeTicks& proceed_time, |
| 599 bool* proceed_to_fire_unload) override; | 600 bool* proceed_to_fire_unload) override; |
| 600 void RenderProcessGoneFromRenderManager( | 601 void RenderProcessGoneFromRenderManager( |
| 601 RenderViewHost* render_view_host) override; | 602 RenderViewHost* render_view_host) override; |
| 602 void UpdateRenderViewSizeForRenderManager() override; | 603 void UpdateRenderViewSizeForRenderManager() override; |
| 603 void CancelModalDialogsForRenderManager() override; | 604 void CancelModalDialogsForRenderManager() override; |
| 604 void NotifySwappedFromRenderManager(RenderFrameHost* old_host, | 605 void NotifySwappedFromRenderManager(RenderFrameHost* old_host, |
| 605 RenderFrameHost* new_host, | 606 RenderFrameHost* new_host, |
| (...skipping 701 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1307 // Adds/removes a callback called on creation of each new WebContents. | 1308 // Adds/removes a callback called on creation of each new WebContents. |
| 1308 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); | 1309 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1309 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); | 1310 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1310 | 1311 |
| 1311 DISALLOW_COPY_AND_ASSIGN(FriendZone); | 1312 DISALLOW_COPY_AND_ASSIGN(FriendZone); |
| 1312 }; | 1313 }; |
| 1313 | 1314 |
| 1314 } // namespace content | 1315 } // namespace content |
| 1315 | 1316 |
| 1316 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1317 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |