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 712 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1326 // Adds/removes a callback called on creation of each new WebContents. | 1327 // Adds/removes a callback called on creation of each new WebContents. |
1327 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); | 1328 static void AddCreatedCallbackForTesting(const CreatedCallback& callback); |
1328 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); | 1329 static void RemoveCreatedCallbackForTesting(const CreatedCallback& callback); |
1329 | 1330 |
1330 DISALLOW_COPY_AND_ASSIGN(FriendZone); | 1331 DISALLOW_COPY_AND_ASSIGN(FriendZone); |
1331 }; | 1332 }; |
1332 | 1333 |
1333 } // namespace content | 1334 } // namespace content |
1334 | 1335 |
1335 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1336 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |