Chromium Code Reviews| 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 686 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 697 void LostCapture(RenderWidgetHostImpl* render_widget_host) override; | 697 void LostCapture(RenderWidgetHostImpl* render_widget_host) override; |
| 698 void LostMouseLock(RenderWidgetHostImpl* render_widget_host) override; | 698 void LostMouseLock(RenderWidgetHostImpl* render_widget_host) override; |
| 699 bool HasMouseLock(RenderWidgetHostImpl* render_widget_host) override; | 699 bool HasMouseLock(RenderWidgetHostImpl* render_widget_host) override; |
| 700 RenderWidgetHostImpl* GetMouseLockWidget() override; | 700 RenderWidgetHostImpl* GetMouseLockWidget() override; |
| 701 void OnRenderFrameProxyVisibilityChanged(bool visible) override; | 701 void OnRenderFrameProxyVisibilityChanged(bool visible) override; |
| 702 void SendScreenRects() override; | 702 void SendScreenRects() override; |
| 703 TextInputManager* GetTextInputManager() override; | 703 TextInputManager* GetTextInputManager() override; |
| 704 bool OnUpdateDragCursor() override; | 704 bool OnUpdateDragCursor() override; |
| 705 bool IsWidgetForMainFrame(RenderWidgetHostImpl* render_widget_host) override; | 705 bool IsWidgetForMainFrame(RenderWidgetHostImpl* render_widget_host) override; |
| 706 bool AddDomainInfoToRapporSample(rappor::Sample* sample) override; | 706 bool AddDomainInfoToRapporSample(rappor::Sample* sample) override; |
| 707 bool UpdateUrlForUkmSource(ukm::UkmService* service, | |
|
Charlie Reis
2017/05/24 16:28:32
Might need to forward declare UkmService (IWYU).
Navid Zolghadr
2017/05/25 15:45:46
Done.
| |
| 708 int32_t ukm_source_id) override; | |
| 707 void FocusedNodeTouched(bool editable) override; | 709 void FocusedNodeTouched(bool editable) override; |
| 708 void DidReceiveCompositorFrame() override; | 710 void DidReceiveCompositorFrame() override; |
| 709 | 711 |
| 710 // RenderFrameHostManager::Delegate ------------------------------------------ | 712 // RenderFrameHostManager::Delegate ------------------------------------------ |
| 711 | 713 |
| 712 bool CreateRenderViewForRenderManager( | 714 bool CreateRenderViewForRenderManager( |
| 713 RenderViewHost* render_view_host, | 715 RenderViewHost* render_view_host, |
| 714 int opener_frame_routing_id, | 716 int opener_frame_routing_id, |
| 715 int proxy_routing_id, | 717 int proxy_routing_id, |
| 716 const FrameReplicationState& replicated_frame_state) override; | 718 const FrameReplicationState& replicated_frame_state) override; |
| (...skipping 889 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1606 // Adds/removes a callback called on creation of each new WebContents. | 1608 // Adds/removes a callback called on creation of each new WebContents. |
| 1607 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); | 1609 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1608 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); | 1610 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1609 | 1611 |
| 1610 DISALLOW_COPY_AND_ASSIGN(FriendWrapper); | 1612 DISALLOW_COPY_AND_ASSIGN(FriendWrapper); |
| 1611 }; | 1613 }; |
| 1612 | 1614 |
| 1613 } // namespace content | 1615 } // namespace content |
| 1614 | 1616 |
| 1615 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1617 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |