| 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 651 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 662 RenderWidgetHostImpl* render_widget_host) const override; | 662 RenderWidgetHostImpl* render_widget_host) const override; |
| 663 void LostCapture(RenderWidgetHostImpl* render_widget_host) override; | 663 void LostCapture(RenderWidgetHostImpl* render_widget_host) override; |
| 664 void LostMouseLock(RenderWidgetHostImpl* render_widget_host) override; | 664 void LostMouseLock(RenderWidgetHostImpl* render_widget_host) override; |
| 665 bool HasMouseLock(RenderWidgetHostImpl* render_widget_host) override; | 665 bool HasMouseLock(RenderWidgetHostImpl* render_widget_host) override; |
| 666 void ForwardCompositorProto(RenderWidgetHostImpl* render_widget_host, | 666 void ForwardCompositorProto(RenderWidgetHostImpl* render_widget_host, |
| 667 const std::vector<uint8_t>& proto) override; | 667 const std::vector<uint8_t>& proto) override; |
| 668 void OnRenderFrameProxyVisibilityChanged(bool visible) override; | 668 void OnRenderFrameProxyVisibilityChanged(bool visible) override; |
| 669 void SendScreenRects() override; | 669 void SendScreenRects() override; |
| 670 void OnFirstPaintAfterLoad(RenderWidgetHostImpl* render_widget_host) override; | 670 void OnFirstPaintAfterLoad(RenderWidgetHostImpl* render_widget_host) override; |
| 671 TextInputManager* GetTextInputManager() override; | 671 TextInputManager* GetTextInputManager() override; |
| 672 void OnUpdateTextInputState(RenderWidgetHostImpl* render_widget_host, |
| 673 ui::TextInputType type, |
| 674 const std::string& text, |
| 675 const std::string& placeholder, |
| 676 bool show_ime_if_needed) override; |
| 672 | 677 |
| 673 // RenderFrameHostManager::Delegate ------------------------------------------ | 678 // RenderFrameHostManager::Delegate ------------------------------------------ |
| 674 | 679 |
| 675 bool CreateRenderViewForRenderManager( | 680 bool CreateRenderViewForRenderManager( |
| 676 RenderViewHost* render_view_host, | 681 RenderViewHost* render_view_host, |
| 677 int opener_frame_routing_id, | 682 int opener_frame_routing_id, |
| 678 int proxy_routing_id, | 683 int proxy_routing_id, |
| 679 const FrameReplicationState& replicated_frame_state) override; | 684 const FrameReplicationState& replicated_frame_state) override; |
| 680 void CreateRenderWidgetHostViewForRenderManager( | 685 void CreateRenderWidgetHostViewForRenderManager( |
| 681 RenderViewHost* render_view_host) override; | 686 RenderViewHost* render_view_host) override; |
| (...skipping 797 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1479 // Adds/removes a callback called on creation of each new WebContents. | 1484 // Adds/removes a callback called on creation of each new WebContents. |
| 1480 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); | 1485 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1481 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); | 1486 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1482 | 1487 |
| 1483 DISALLOW_COPY_AND_ASSIGN(FriendZone); | 1488 DISALLOW_COPY_AND_ASSIGN(FriendZone); |
| 1484 }; | 1489 }; |
| 1485 | 1490 |
| 1486 } // namespace content | 1491 } // namespace content |
| 1487 | 1492 |
| 1488 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1493 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |