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 503 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
514 virtual void DidSendScreenRects(RenderWidgetHostImpl* rwh) OVERRIDE; | 514 virtual void DidSendScreenRects(RenderWidgetHostImpl* rwh) OVERRIDE; |
515 #if defined(OS_WIN) | 515 #if defined(OS_WIN) |
516 virtual gfx::NativeViewAccessible GetParentNativeViewAccessible() OVERRIDE; | 516 virtual gfx::NativeViewAccessible GetParentNativeViewAccessible() OVERRIDE; |
517 #endif | 517 #endif |
518 | 518 |
519 // RenderFrameHostManager::Delegate ------------------------------------------ | 519 // RenderFrameHostManager::Delegate ------------------------------------------ |
520 | 520 |
521 virtual bool CreateRenderViewForRenderManager( | 521 virtual bool CreateRenderViewForRenderManager( |
522 RenderViewHost* render_view_host, | 522 RenderViewHost* render_view_host, |
523 int opener_route_id, | 523 int opener_route_id, |
| 524 int proxy_routing_id, |
524 CrossProcessFrameConnector* frame_connector) OVERRIDE; | 525 CrossProcessFrameConnector* frame_connector) OVERRIDE; |
525 virtual void BeforeUnloadFiredFromRenderManager( | 526 virtual void BeforeUnloadFiredFromRenderManager( |
526 bool proceed, const base::TimeTicks& proceed_time, | 527 bool proceed, const base::TimeTicks& proceed_time, |
527 bool* proceed_to_fire_unload) OVERRIDE; | 528 bool* proceed_to_fire_unload) OVERRIDE; |
528 virtual void RenderProcessGoneFromRenderManager( | 529 virtual void RenderProcessGoneFromRenderManager( |
529 RenderViewHost* render_view_host) OVERRIDE; | 530 RenderViewHost* render_view_host) OVERRIDE; |
530 virtual void UpdateRenderViewSizeForRenderManager() OVERRIDE; | 531 virtual void UpdateRenderViewSizeForRenderManager() OVERRIDE; |
531 virtual void CancelModalDialogsForRenderManager() OVERRIDE; | 532 virtual void CancelModalDialogsForRenderManager() OVERRIDE; |
532 virtual void NotifySwappedFromRenderManager( | 533 virtual void NotifySwappedFromRenderManager( |
533 RenderViewHost* old_host, RenderViewHost* new_host) OVERRIDE; | 534 RenderViewHost* old_host, RenderViewHost* new_host) OVERRIDE; |
(...skipping 564 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1098 bool last_dialog_suppressed_; | 1099 bool last_dialog_suppressed_; |
1099 | 1100 |
1100 scoped_ptr<GeolocationDispatcherHost> geolocation_dispatcher_host_; | 1101 scoped_ptr<GeolocationDispatcherHost> geolocation_dispatcher_host_; |
1101 | 1102 |
1102 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1103 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
1103 }; | 1104 }; |
1104 | 1105 |
1105 } // namespace content | 1106 } // namespace content |
1106 | 1107 |
1107 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1108 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |