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 826 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
837 private: | 837 private: |
838 // For unit tests. | 838 // For unit tests. |
839 friend class ExternalPopupMenuTest; | 839 friend class ExternalPopupMenuTest; |
840 friend class PepperDeviceTest; | 840 friend class PepperDeviceTest; |
841 friend class RendererAccessibilityTest; | 841 friend class RendererAccessibilityTest; |
842 friend class RenderViewTest; | 842 friend class RenderViewTest; |
843 | 843 |
844 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuRemoveTest, RemoveOnChange); | 844 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuRemoveTest, RemoveOnChange); |
845 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuTest, NormalCase); | 845 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuTest, NormalCase); |
846 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuTest, ShowPopupThenNavigate); | 846 FRIEND_TEST_ALL_PREFIXES(ExternalPopupMenuTest, ShowPopupThenNavigate); |
| 847 FRIEND_TEST_ALL_PREFIXES(RendererAccessibilityTest, |
| 848 AccessibilityMessagesQueueWhileSwappedOut); |
847 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, DecideNavigationPolicyForWebUI); | 849 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, DecideNavigationPolicyForWebUI); |
848 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, | 850 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, |
849 DidFailProvisionalLoadWithErrorForError); | 851 DidFailProvisionalLoadWithErrorForError); |
850 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, | 852 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, |
851 DidFailProvisionalLoadWithErrorForCancellation); | 853 DidFailProvisionalLoadWithErrorForCancellation); |
852 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, | 854 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, |
853 DontIgnoreBackAfterNavEntryLimit); | 855 DontIgnoreBackAfterNavEntryLimit); |
854 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, ImeComposition); | 856 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, ImeComposition); |
855 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, InsertCharacters); | 857 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, InsertCharacters); |
856 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, JSBlockSentAfterPageLoad); | 858 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, JSBlockSentAfterPageLoad); |
(...skipping 705 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1562 // use the Observer interface to filter IPC messages and receive frame change | 1564 // use the Observer interface to filter IPC messages and receive frame change |
1563 // notifications. | 1565 // notifications. |
1564 // --------------------------------------------------------------------------- | 1566 // --------------------------------------------------------------------------- |
1565 | 1567 |
1566 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1568 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1567 }; | 1569 }; |
1568 | 1570 |
1569 } // namespace content | 1571 } // namespace content |
1570 | 1572 |
1571 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1573 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |