| 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 <functional> | 10 #include <functional> |
| (...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 624 bool IsFullscreenForCurrentTab( | 624 bool IsFullscreenForCurrentTab( |
| 625 RenderWidgetHostImpl* render_widget_host) const override; | 625 RenderWidgetHostImpl* render_widget_host) const override; |
| 626 blink::WebDisplayMode GetDisplayMode( | 626 blink::WebDisplayMode GetDisplayMode( |
| 627 RenderWidgetHostImpl* render_widget_host) const override; | 627 RenderWidgetHostImpl* render_widget_host) const override; |
| 628 void LostCapture(RenderWidgetHostImpl* render_widget_host) override; | 628 void LostCapture(RenderWidgetHostImpl* render_widget_host) override; |
| 629 void LostMouseLock(RenderWidgetHostImpl* render_widget_host) override; | 629 void LostMouseLock(RenderWidgetHostImpl* render_widget_host) override; |
| 630 void ForwardCompositorProto(RenderWidgetHostImpl* render_widget_host, | 630 void ForwardCompositorProto(RenderWidgetHostImpl* render_widget_host, |
| 631 const std::vector<uint8_t>& proto) override; | 631 const std::vector<uint8_t>& proto) override; |
| 632 void OnRenderFrameProxyVisibilityChanged(bool visible) override; | 632 void OnRenderFrameProxyVisibilityChanged(bool visible) override; |
| 633 void SendScreenRects() override; | 633 void SendScreenRects() override; |
| 634 void OnFirstPaintAfterLoad(RenderWidgetHostImpl* render_widget_host) override; |
| 634 | 635 |
| 635 // RenderFrameHostManager::Delegate ------------------------------------------ | 636 // RenderFrameHostManager::Delegate ------------------------------------------ |
| 636 | 637 |
| 637 bool CreateRenderViewForRenderManager( | 638 bool CreateRenderViewForRenderManager( |
| 638 RenderViewHost* render_view_host, | 639 RenderViewHost* render_view_host, |
| 639 int opener_frame_routing_id, | 640 int opener_frame_routing_id, |
| 640 int proxy_routing_id, | 641 int proxy_routing_id, |
| 641 const FrameReplicationState& replicated_frame_state) override; | 642 const FrameReplicationState& replicated_frame_state) override; |
| 642 void CreateRenderWidgetHostViewForRenderManager( | 643 void CreateRenderWidgetHostViewForRenderManager( |
| 643 RenderViewHost* render_view_host) override; | 644 RenderViewHost* render_view_host) override; |
| (...skipping 749 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1393 // Adds/removes a callback called on creation of each new WebContents. | 1394 // Adds/removes a callback called on creation of each new WebContents. |
| 1394 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); | 1395 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1395 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); | 1396 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1396 | 1397 |
| 1397 DISALLOW_COPY_AND_ASSIGN(FriendZone); | 1398 DISALLOW_COPY_AND_ASSIGN(FriendZone); |
| 1398 }; | 1399 }; |
| 1399 | 1400 |
| 1400 } // namespace content | 1401 } // namespace content |
| 1401 | 1402 |
| 1402 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1403 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |