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 811 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
822 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnUpdateWebPreferences); | 822 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnUpdateWebPreferences); |
823 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, SendSwapOutACK); | 823 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, SendSwapOutACK); |
824 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, ReloadWhileSwappedOut); | 824 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, ReloadWhileSwappedOut); |
825 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, | 825 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, |
826 SetEditableSelectionAndComposition); | 826 SetEditableSelectionAndComposition); |
827 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, StaleNavigationsIgnored); | 827 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, StaleNavigationsIgnored); |
828 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, UpdateTargetURLWithInvalidURL); | 828 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, UpdateTargetURLWithInvalidURL); |
829 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, | 829 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, |
830 GetCompositionCharacterBoundsTest); | 830 GetCompositionCharacterBoundsTest); |
831 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnNavigationHttpPost); | 831 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnNavigationHttpPost); |
| 832 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnNavigationLoadDataWithBaseURL); |
832 #if defined(OS_MACOSX) | 833 #if defined(OS_MACOSX) |
833 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, MacTestCmdUp); | 834 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, MacTestCmdUp); |
834 #endif | 835 #endif |
835 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, SetHistoryLengthAndPrune); | 836 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, SetHistoryLengthAndPrune); |
836 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, ZoomLimit); | 837 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, ZoomLimit); |
837 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, NavigateFrame); | 838 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, NavigateFrame); |
838 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, | 839 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, |
839 ShouldUpdateSelectionTextFromContextMenuParams); | 840 ShouldUpdateSelectionTextFromContextMenuParams); |
840 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, BasicRenderFrame); | 841 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, BasicRenderFrame); |
841 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, TextInputTypeWithPepper); | 842 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, TextInputTypeWithPepper); |
(...skipping 721 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1563 // 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 |
1564 // notifications. | 1565 // notifications. |
1565 // --------------------------------------------------------------------------- | 1566 // --------------------------------------------------------------------------- |
1566 | 1567 |
1567 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1568 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1568 }; | 1569 }; |
1569 | 1570 |
1570 } // namespace content | 1571 } // namespace content |
1571 | 1572 |
1572 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1573 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |