| 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 582 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 593 // void Paste() override; | 593 // void Paste() override; |
| 594 // void SelectAll() override; | 594 // void SelectAll() override; |
| 595 void MoveRangeSelectionExtent(const gfx::Point& extent) override; | 595 void MoveRangeSelectionExtent(const gfx::Point& extent) override; |
| 596 void SelectRange(const gfx::Point& base, const gfx::Point& extent) override; | 596 void SelectRange(const gfx::Point& base, const gfx::Point& extent) override; |
| 597 void AdjustSelectionByCharacterOffset(int start_adjust, int end_adjust) | 597 void AdjustSelectionByCharacterOffset(int start_adjust, int end_adjust) |
| 598 override; | 598 override; |
| 599 RenderWidgetHostInputEventRouter* GetInputEventRouter() override; | 599 RenderWidgetHostInputEventRouter* GetInputEventRouter() override; |
| 600 void ReplicatePageFocus(bool is_focused) override; | 600 void ReplicatePageFocus(bool is_focused) override; |
| 601 RenderWidgetHostImpl* GetFocusedRenderWidgetHost( | 601 RenderWidgetHostImpl* GetFocusedRenderWidgetHost( |
| 602 RenderWidgetHostImpl* receiving_widget) override; | 602 RenderWidgetHostImpl* receiving_widget) override; |
| 603 RenderWidgetHostViewBase* GetFocusedView() override; |
| 603 void RendererUnresponsive(RenderWidgetHostImpl* render_widget_host) override; | 604 void RendererUnresponsive(RenderWidgetHostImpl* render_widget_host) override; |
| 604 void RendererResponsive(RenderWidgetHostImpl* render_widget_host) override; | 605 void RendererResponsive(RenderWidgetHostImpl* render_widget_host) override; |
| 605 void RequestToLockMouse(RenderWidgetHostImpl* render_widget_host, | 606 void RequestToLockMouse(RenderWidgetHostImpl* render_widget_host, |
| 606 bool user_gesture, | 607 bool user_gesture, |
| 607 bool last_unlocked_by_target) override; | 608 bool last_unlocked_by_target) override; |
| 608 gfx::Rect GetRootWindowResizerRect( | 609 gfx::Rect GetRootWindowResizerRect( |
| 609 RenderWidgetHostImpl* render_widget_host) const override; | 610 RenderWidgetHostImpl* render_widget_host) const override; |
| 610 bool IsFullscreenForCurrentTab( | 611 bool IsFullscreenForCurrentTab( |
| 611 RenderWidgetHostImpl* render_widget_host) const override; | 612 RenderWidgetHostImpl* render_widget_host) const override; |
| 612 blink::WebDisplayMode GetDisplayMode( | 613 blink::WebDisplayMode GetDisplayMode( |
| (...skipping 739 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1352 // Adds/removes a callback called on creation of each new WebContents. | 1353 // Adds/removes a callback called on creation of each new WebContents. |
| 1353 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); | 1354 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1354 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); | 1355 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); |
| 1355 | 1356 |
| 1356 DISALLOW_COPY_AND_ASSIGN(FriendZone); | 1357 DISALLOW_COPY_AND_ASSIGN(FriendZone); |
| 1357 }; | 1358 }; |
| 1358 | 1359 |
| 1359 } // namespace content | 1360 } // namespace content |
| 1360 | 1361 |
| 1361 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1362 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
| OLD | NEW |