| 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 649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 660 void LostCapture(RenderWidgetHostImpl* render_widget_host) override; | 660 void LostCapture(RenderWidgetHostImpl* render_widget_host) override; |
| 661 void LostMouseLock(RenderWidgetHostImpl* render_widget_host) override; | 661 void LostMouseLock(RenderWidgetHostImpl* render_widget_host) override; |
| 662 bool HasMouseLock(RenderWidgetHostImpl* render_widget_host) override; | 662 bool HasMouseLock(RenderWidgetHostImpl* render_widget_host) override; |
| 663 void ForwardCompositorProto(RenderWidgetHostImpl* render_widget_host, | 663 void ForwardCompositorProto(RenderWidgetHostImpl* render_widget_host, |
| 664 const std::vector<uint8_t>& proto) override; | 664 const std::vector<uint8_t>& proto) override; |
| 665 void OnRenderFrameProxyVisibilityChanged(bool visible) override; | 665 void OnRenderFrameProxyVisibilityChanged(bool visible) override; |
| 666 void SendScreenRects() override; | 666 void SendScreenRects() override; |
| 667 void OnFirstPaintAfterLoad(RenderWidgetHostImpl* render_widget_host) override; | 667 void OnFirstPaintAfterLoad(RenderWidgetHostImpl* render_widget_host) override; |
| 668 TextInputManager* GetTextInputManager() override; | 668 TextInputManager* GetTextInputManager() override; |
| 669 bool OnUpdateDragCursor() override; | 669 bool OnUpdateDragCursor() override; |
| 670 bool AddDomainInfoToRapporSample(rappor::Sample* sample) override; |
| 670 | 671 |
| 671 // RenderFrameHostManager::Delegate ------------------------------------------ | 672 // RenderFrameHostManager::Delegate ------------------------------------------ |
| 672 | 673 |
| 673 bool CreateRenderViewForRenderManager( | 674 bool CreateRenderViewForRenderManager( |
| 674 RenderViewHost* render_view_host, | 675 RenderViewHost* render_view_host, |
| 675 int opener_frame_routing_id, | 676 int opener_frame_routing_id, |
| 676 int proxy_routing_id, | 677 int proxy_routing_id, |
| 677 const FrameReplicationState& replicated_frame_state) override; | 678 const FrameReplicationState& replicated_frame_state) override; |
| 678 void CreateRenderWidgetHostViewForRenderManager( | 679 void CreateRenderWidgetHostViewForRenderManager( |
| 679 RenderViewHost* render_view_host) override; | 680 RenderViewHost* render_view_host) override; |
| (...skipping 809 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1489 // Adds/removes a callback called on creation of each new WebContents. | 1490 // Adds/removes a callback called on creation of each new WebContents. |
| 1490 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); | 1491 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1491 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); | 1492 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1492 | 1493 |
| 1493 DISALLOW_COPY_AND_ASSIGN(FriendZone); | 1494 DISALLOW_COPY_AND_ASSIGN(FriendZone); |
| 1494 }; | 1495 }; |
| 1495 | 1496 |
| 1496 } // namespace content | 1497 } // namespace content |
| 1497 | 1498 |
| 1498 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1499 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |