| 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 640 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 651 void RequestToLockMouse(RenderWidgetHostImpl* render_widget_host, | 651 void RequestToLockMouse(RenderWidgetHostImpl* render_widget_host, |
| 652 bool user_gesture, | 652 bool user_gesture, |
| 653 bool last_unlocked_by_target, | 653 bool last_unlocked_by_target, |
| 654 bool privileged) override; | 654 bool privileged) override; |
| 655 bool IsFullscreenForCurrentTab() const override; | 655 bool IsFullscreenForCurrentTab() const override; |
| 656 blink::WebDisplayMode GetDisplayMode( | 656 blink::WebDisplayMode GetDisplayMode( |
| 657 RenderWidgetHostImpl* render_widget_host) const override; | 657 RenderWidgetHostImpl* render_widget_host) const override; |
| 658 void LostCapture(RenderWidgetHostImpl* render_widget_host) override; | 658 void LostCapture(RenderWidgetHostImpl* render_widget_host) override; |
| 659 void LostMouseLock(RenderWidgetHostImpl* render_widget_host) override; | 659 void LostMouseLock(RenderWidgetHostImpl* render_widget_host) override; |
| 660 bool HasMouseLock(RenderWidgetHostImpl* render_widget_host) override; | 660 bool HasMouseLock(RenderWidgetHostImpl* render_widget_host) override; |
| 661 void ForwardCompositorProto(RenderWidgetHostImpl* render_widget_host, | |
| 662 const std::vector<uint8_t>& proto) override; | |
| 663 void OnRenderFrameProxyVisibilityChanged(bool visible) override; | 661 void OnRenderFrameProxyVisibilityChanged(bool visible) override; |
| 664 void SendScreenRects() override; | 662 void SendScreenRects() override; |
| 665 void OnFirstPaintAfterLoad(RenderWidgetHostImpl* render_widget_host) override; | 663 void OnFirstPaintAfterLoad(RenderWidgetHostImpl* render_widget_host) override; |
| 666 TextInputManager* GetTextInputManager() override; | 664 TextInputManager* GetTextInputManager() override; |
| 667 bool OnUpdateDragCursor() override; | 665 bool OnUpdateDragCursor() override; |
| 668 bool AddDomainInfoToRapporSample(rappor::Sample* sample) override; | 666 bool AddDomainInfoToRapporSample(rappor::Sample* sample) override; |
| 669 void FocusedNodeTouched(bool editable) override; | 667 void FocusedNodeTouched(bool editable) override; |
| 670 | 668 |
| 671 // RenderFrameHostManager::Delegate ------------------------------------------ | 669 // RenderFrameHostManager::Delegate ------------------------------------------ |
| 672 | 670 |
| (...skipping 843 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1516 // Adds/removes a callback called on creation of each new WebContents. | 1514 // Adds/removes a callback called on creation of each new WebContents. |
| 1517 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); | 1515 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1518 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); | 1516 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1519 | 1517 |
| 1520 DISALLOW_COPY_AND_ASSIGN(FriendZone); | 1518 DISALLOW_COPY_AND_ASSIGN(FriendZone); |
| 1521 }; | 1519 }; |
| 1522 | 1520 |
| 1523 } // namespace content | 1521 } // namespace content |
| 1524 | 1522 |
| 1525 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1523 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |