| 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 630 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 641 void SelectRange(const gfx::Point& base, const gfx::Point& extent) override; | 641 void SelectRange(const gfx::Point& base, const gfx::Point& extent) override; |
| 642 void AdjustSelectionByCharacterOffset(int start_adjust, int end_adjust) | 642 void AdjustSelectionByCharacterOffset(int start_adjust, int end_adjust) |
| 643 override; | 643 override; |
| 644 RenderWidgetHostInputEventRouter* GetInputEventRouter() override; | 644 RenderWidgetHostInputEventRouter* GetInputEventRouter() override; |
| 645 void ReplicatePageFocus(bool is_focused) override; | 645 void ReplicatePageFocus(bool is_focused) override; |
| 646 RenderWidgetHostImpl* GetFocusedRenderWidgetHost( | 646 RenderWidgetHostImpl* GetFocusedRenderWidgetHost( |
| 647 RenderWidgetHostImpl* receiving_widget) override; | 647 RenderWidgetHostImpl* receiving_widget) override; |
| 648 RenderWidgetHostImpl* GetRenderWidgetHostWithPageFocus() override; | 648 RenderWidgetHostImpl* GetRenderWidgetHostWithPageFocus() override; |
| 649 void FocusOwningWebContents( | 649 void FocusOwningWebContents( |
| 650 RenderWidgetHostImpl* render_widget_host) override; | 650 RenderWidgetHostImpl* render_widget_host) override; |
| 651 void RendererUnresponsive(RenderWidgetHostImpl* render_widget_host, | 651 void RendererUnresponsive(RenderWidgetHostImpl* render_widget_host) override; |
| 652 RendererUnresponsiveType type) override; | |
| 653 void RendererResponsive(RenderWidgetHostImpl* render_widget_host) override; | 652 void RendererResponsive(RenderWidgetHostImpl* render_widget_host) override; |
| 654 void RequestToLockMouse(RenderWidgetHostImpl* render_widget_host, | 653 void RequestToLockMouse(RenderWidgetHostImpl* render_widget_host, |
| 655 bool user_gesture, | 654 bool user_gesture, |
| 656 bool last_unlocked_by_target, | 655 bool last_unlocked_by_target, |
| 657 bool privileged) override; | 656 bool privileged) override; |
| 658 bool IsFullscreenForCurrentTab() const override; | 657 bool IsFullscreenForCurrentTab() const override; |
| 659 blink::WebDisplayMode GetDisplayMode( | 658 blink::WebDisplayMode GetDisplayMode( |
| 660 RenderWidgetHostImpl* render_widget_host) const override; | 659 RenderWidgetHostImpl* render_widget_host) const override; |
| 661 void LostCapture(RenderWidgetHostImpl* render_widget_host) override; | 660 void LostCapture(RenderWidgetHostImpl* render_widget_host) override; |
| 662 void LostMouseLock(RenderWidgetHostImpl* render_widget_host) override; | 661 void LostMouseLock(RenderWidgetHostImpl* render_widget_host) override; |
| (...skipping 881 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1544 // Adds/removes a callback called on creation of each new WebContents. | 1543 // Adds/removes a callback called on creation of each new WebContents. |
| 1545 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); | 1544 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1546 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); | 1545 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1547 | 1546 |
| 1548 DISALLOW_COPY_AND_ASSIGN(FriendZone); | 1547 DISALLOW_COPY_AND_ASSIGN(FriendZone); |
| 1549 }; | 1548 }; |
| 1550 | 1549 |
| 1551 } // namespace content | 1550 } // namespace content |
| 1552 | 1551 |
| 1553 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1552 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |