| 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 658 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 669 void LostCapture(RenderWidgetHostImpl* render_widget_host) override; | 669 void LostCapture(RenderWidgetHostImpl* render_widget_host) override; |
| 670 void LostMouseLock(RenderWidgetHostImpl* render_widget_host) override; | 670 void LostMouseLock(RenderWidgetHostImpl* render_widget_host) override; |
| 671 bool HasMouseLock(RenderWidgetHostImpl* render_widget_host) override; | 671 bool HasMouseLock(RenderWidgetHostImpl* render_widget_host) override; |
| 672 RenderWidgetHostImpl* GetMouseLockWidget() override; | 672 RenderWidgetHostImpl* GetMouseLockWidget() override; |
| 673 void OnRenderFrameProxyVisibilityChanged(bool visible) override; | 673 void OnRenderFrameProxyVisibilityChanged(bool visible) override; |
| 674 void SendScreenRects() override; | 674 void SendScreenRects() override; |
| 675 TextInputManager* GetTextInputManager() override; | 675 TextInputManager* GetTextInputManager() override; |
| 676 bool OnUpdateDragCursor() override; | 676 bool OnUpdateDragCursor() override; |
| 677 bool AddDomainInfoToRapporSample(rappor::Sample* sample) override; | 677 bool AddDomainInfoToRapporSample(rappor::Sample* sample) override; |
| 678 void FocusedNodeTouched(bool editable) override; | 678 void FocusedNodeTouched(bool editable) override; |
| 679 bool HasFocusedGuests() override; |
| 679 | 680 |
| 680 // RenderFrameHostManager::Delegate ------------------------------------------ | 681 // RenderFrameHostManager::Delegate ------------------------------------------ |
| 681 | 682 |
| 682 bool CreateRenderViewForRenderManager( | 683 bool CreateRenderViewForRenderManager( |
| 683 RenderViewHost* render_view_host, | 684 RenderViewHost* render_view_host, |
| 684 int opener_frame_routing_id, | 685 int opener_frame_routing_id, |
| 685 int proxy_routing_id, | 686 int proxy_routing_id, |
| 686 const FrameReplicationState& replicated_frame_state) override; | 687 const FrameReplicationState& replicated_frame_state) override; |
| 687 void CreateRenderWidgetHostViewForRenderManager( | 688 void CreateRenderWidgetHostViewForRenderManager( |
| 688 RenderViewHost* render_view_host) override; | 689 RenderViewHost* render_view_host) override; |
| (...skipping 864 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1553 // Adds/removes a callback called on creation of each new WebContents. | 1554 // Adds/removes a callback called on creation of each new WebContents. |
| 1554 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); | 1555 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1555 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); | 1556 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1556 | 1557 |
| 1557 DISALLOW_COPY_AND_ASSIGN(FriendWrapper); | 1558 DISALLOW_COPY_AND_ASSIGN(FriendWrapper); |
| 1558 }; | 1559 }; |
| 1559 | 1560 |
| 1560 } // namespace content | 1561 } // namespace content |
| 1561 | 1562 |
| 1562 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1563 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |