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 529 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
540 virtual BrowserAccessibilityManager* | 540 virtual BrowserAccessibilityManager* |
541 GetOrCreateRootBrowserAccessibilityManager() OVERRIDE; | 541 GetOrCreateRootBrowserAccessibilityManager() OVERRIDE; |
542 | 542 |
543 // RenderFrameHostManager::Delegate ------------------------------------------ | 543 // RenderFrameHostManager::Delegate ------------------------------------------ |
544 | 544 |
545 virtual bool CreateRenderViewForRenderManager( | 545 virtual bool CreateRenderViewForRenderManager( |
546 RenderViewHost* render_view_host, | 546 RenderViewHost* render_view_host, |
547 int opener_route_id, | 547 int opener_route_id, |
548 int proxy_routing_id, | 548 int proxy_routing_id, |
549 bool for_main_frame) OVERRIDE; | 549 bool for_main_frame) OVERRIDE; |
| 550 virtual bool CreateRenderFrameForRenderManager( |
| 551 RenderFrameHost* render_frame_host, |
| 552 int parent_routing_id) OVERRIDE; |
550 virtual void BeforeUnloadFiredFromRenderManager( | 553 virtual void BeforeUnloadFiredFromRenderManager( |
551 bool proceed, const base::TimeTicks& proceed_time, | 554 bool proceed, const base::TimeTicks& proceed_time, |
552 bool* proceed_to_fire_unload) OVERRIDE; | 555 bool* proceed_to_fire_unload) OVERRIDE; |
553 virtual void RenderProcessGoneFromRenderManager( | 556 virtual void RenderProcessGoneFromRenderManager( |
554 RenderViewHost* render_view_host) OVERRIDE; | 557 RenderViewHost* render_view_host) OVERRIDE; |
555 virtual void UpdateRenderViewSizeForRenderManager() OVERRIDE; | 558 virtual void UpdateRenderViewSizeForRenderManager() OVERRIDE; |
556 virtual void CancelModalDialogsForRenderManager() OVERRIDE; | 559 virtual void CancelModalDialogsForRenderManager() OVERRIDE; |
557 virtual void NotifySwappedFromRenderManager(RenderFrameHost* old_host, | 560 virtual void NotifySwappedFromRenderManager(RenderFrameHost* old_host, |
558 RenderFrameHost* new_host, | 561 RenderFrameHost* new_host, |
559 bool is_main_frame) OVERRIDE; | 562 bool is_main_frame) OVERRIDE; |
(...skipping 624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1184 // The accessibility mode for all frames. This is queried when each frame | 1187 // The accessibility mode for all frames. This is queried when each frame |
1185 // is created, and broadcast to all frames when it changes. | 1188 // is created, and broadcast to all frames when it changes. |
1186 AccessibilityMode accessibility_mode_; | 1189 AccessibilityMode accessibility_mode_; |
1187 | 1190 |
1188 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1191 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
1189 }; | 1192 }; |
1190 | 1193 |
1191 } // namespace content | 1194 } // namespace content |
1192 | 1195 |
1193 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1196 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |