| 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 <map> | 10 #include <map> |
| (...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 594 // void Paste() override; | 594 // void Paste() override; |
| 595 // void SelectAll() override; | 595 // void SelectAll() override; |
| 596 void MoveRangeSelectionExtent(const gfx::Point& extent) override; | 596 void MoveRangeSelectionExtent(const gfx::Point& extent) override; |
| 597 void SelectRange(const gfx::Point& base, const gfx::Point& extent) override; | 597 void SelectRange(const gfx::Point& base, const gfx::Point& extent) override; |
| 598 void AdjustSelectionByCharacterOffset(int start_adjust, int end_adjust) | 598 void AdjustSelectionByCharacterOffset(int start_adjust, int end_adjust) |
| 599 override; | 599 override; |
| 600 RenderWidgetHostInputEventRouter* GetInputEventRouter() override; | 600 RenderWidgetHostInputEventRouter* GetInputEventRouter() override; |
| 601 void ReplicatePageFocus(bool is_focused) override; | 601 void ReplicatePageFocus(bool is_focused) override; |
| 602 RenderWidgetHostImpl* GetFocusedRenderWidgetHost( | 602 RenderWidgetHostImpl* GetFocusedRenderWidgetHost( |
| 603 RenderWidgetHostImpl* receiving_widget) override; | 603 RenderWidgetHostImpl* receiving_widget) override; |
| 604 RenderWidgetHostViewBase* GetFocusedView() override; |
| 604 void RendererUnresponsive(RenderWidgetHostImpl* render_widget_host) override; | 605 void RendererUnresponsive(RenderWidgetHostImpl* render_widget_host) override; |
| 605 void RendererResponsive(RenderWidgetHostImpl* render_widget_host) override; | 606 void RendererResponsive(RenderWidgetHostImpl* render_widget_host) override; |
| 606 void RequestToLockMouse(RenderWidgetHostImpl* render_widget_host, | 607 void RequestToLockMouse(RenderWidgetHostImpl* render_widget_host, |
| 607 bool user_gesture, | 608 bool user_gesture, |
| 608 bool last_unlocked_by_target) override; | 609 bool last_unlocked_by_target) override; |
| 609 gfx::Rect GetRootWindowResizerRect( | 610 gfx::Rect GetRootWindowResizerRect( |
| 610 RenderWidgetHostImpl* render_widget_host) const override; | 611 RenderWidgetHostImpl* render_widget_host) const override; |
| 611 bool IsFullscreenForCurrentTab( | 612 bool IsFullscreenForCurrentTab( |
| 612 RenderWidgetHostImpl* render_widget_host) const override; | 613 RenderWidgetHostImpl* render_widget_host) const override; |
| 613 blink::WebDisplayMode GetDisplayMode( | 614 blink::WebDisplayMode GetDisplayMode( |
| (...skipping 720 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1334 // Adds/removes a callback called on creation of each new WebContents. | 1335 // Adds/removes a callback called on creation of each new WebContents. |
| 1335 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); | 1336 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1336 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); | 1337 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1337 | 1338 |
| 1338 DISALLOW_COPY_AND_ASSIGN(FriendZone); | 1339 DISALLOW_COPY_AND_ASSIGN(FriendZone); |
| 1339 }; | 1340 }; |
| 1340 | 1341 |
| 1341 } // namespace content | 1342 } // namespace content |
| 1342 | 1343 |
| 1343 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1344 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |