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