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