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