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_RENDERER_RENDER_VIEW_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
7 | 7 |
8 #include <deque> | 8 #include <deque> |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
(...skipping 784 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
795 virtual void GetCompositionCharacterBounds( | 795 virtual void GetCompositionCharacterBounds( |
796 std::vector<gfx::Rect>* character_bounds) OVERRIDE; | 796 std::vector<gfx::Rect>* character_bounds) OVERRIDE; |
797 virtual bool CanComposeInline() OVERRIDE; | 797 virtual bool CanComposeInline() OVERRIDE; |
798 virtual bool WebWidgetHandlesCompositorScheduling() const OVERRIDE; | 798 virtual bool WebWidgetHandlesCompositorScheduling() const OVERRIDE; |
799 | 799 |
800 private: | 800 private: |
801 // For unit tests. | 801 // For unit tests. |
802 friend class ExternalPopupMenuTest; | 802 friend class ExternalPopupMenuTest; |
803 friend class PepperDeviceTest; | 803 friend class PepperDeviceTest; |
804 friend class RendererAccessibilityTest; | 804 friend class RendererAccessibilityTest; |
| 805 friend class WebIntentsHostTest; |
805 friend class content::RenderViewTest; | 806 friend class content::RenderViewTest; |
806 | 807 |
807 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuRemoveTest, RemoveOnChange); | 808 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuRemoveTest, RemoveOnChange); |
808 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuTest, NormalCase); | 809 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuTest, NormalCase); |
809 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuTest, ShowPopupThenNavigate); | 810 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuTest, ShowPopupThenNavigate); |
810 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, DecideNavigationPolicyForWebUI); | 811 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, DecideNavigationPolicyForWebUI); |
811 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, | 812 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, |
812 DontIgnoreBackAfterNavEntryLimit); | 813 DontIgnoreBackAfterNavEntryLimit); |
813 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, ImeComposition); | 814 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, ImeComposition); |
814 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, InsertCharacters); | 815 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, InsertCharacters); |
(...skipping 774 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1589 // bunch of stuff, you should probably create a helper class and put your | 1590 // bunch of stuff, you should probably create a helper class and put your |
1590 // data and methods on that to avoid bloating RenderView more. You can | 1591 // data and methods on that to avoid bloating RenderView more. You can |
1591 // use the Observer interface to filter IPC messages and receive frame change | 1592 // use the Observer interface to filter IPC messages and receive frame change |
1592 // notifications. | 1593 // notifications. |
1593 // --------------------------------------------------------------------------- | 1594 // --------------------------------------------------------------------------- |
1594 | 1595 |
1595 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1596 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1596 }; | 1597 }; |
1597 | 1598 |
1598 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1599 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |