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 <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <map> | 10 #include <map> |
(...skipping 596 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
607 gfx::Rect GetRootWindowResizerRect( | 607 gfx::Rect GetRootWindowResizerRect( |
608 RenderWidgetHostImpl* render_widget_host) const override; | 608 RenderWidgetHostImpl* render_widget_host) const override; |
609 bool IsFullscreenForCurrentTab( | 609 bool IsFullscreenForCurrentTab( |
610 RenderWidgetHostImpl* render_widget_host) const override; | 610 RenderWidgetHostImpl* render_widget_host) const override; |
611 blink::WebDisplayMode GetDisplayMode( | 611 blink::WebDisplayMode GetDisplayMode( |
612 RenderWidgetHostImpl* render_widget_host) const override; | 612 RenderWidgetHostImpl* render_widget_host) const override; |
613 void LostCapture(RenderWidgetHostImpl* render_widget_host) override; | 613 void LostCapture(RenderWidgetHostImpl* render_widget_host) override; |
614 void LostMouseLock(RenderWidgetHostImpl* render_widget_host) override; | 614 void LostMouseLock(RenderWidgetHostImpl* render_widget_host) override; |
615 void ForwardCompositorProto(RenderWidgetHostImpl* render_widget_host, | 615 void ForwardCompositorProto(RenderWidgetHostImpl* render_widget_host, |
616 const std::vector<uint8_t>& proto) override; | 616 const std::vector<uint8_t>& proto) override; |
| 617 void ForwardVisibilityChange(bool visible) override; |
617 | 618 |
618 // RenderFrameHostManager::Delegate ------------------------------------------ | 619 // RenderFrameHostManager::Delegate ------------------------------------------ |
619 | 620 |
620 bool CreateRenderViewForRenderManager( | 621 bool CreateRenderViewForRenderManager( |
621 RenderViewHost* render_view_host, | 622 RenderViewHost* render_view_host, |
622 int opener_frame_routing_id, | 623 int opener_frame_routing_id, |
623 int proxy_routing_id, | 624 int proxy_routing_id, |
624 const FrameReplicationState& replicated_frame_state) override; | 625 const FrameReplicationState& replicated_frame_state) override; |
625 void CreateRenderWidgetHostViewForRenderManager( | 626 void CreateRenderWidgetHostViewForRenderManager( |
626 RenderViewHost* render_view_host) override; | 627 RenderViewHost* render_view_host) override; |
(...skipping 694 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1321 // Adds/removes a callback called on creation of each new WebContents. | 1322 // Adds/removes a callback called on creation of each new WebContents. |
1322 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); | 1323 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); |
1323 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); | 1324 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); |
1324 | 1325 |
1325 DISALLOW_COPY_AND_ASSIGN(FriendZone); | 1326 DISALLOW_COPY_AND_ASSIGN(FriendZone); |
1326 }; | 1327 }; |
1327 | 1328 |
1328 } // namespace content | 1329 } // namespace content |
1329 | 1330 |
1330 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1331 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |