| 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 818 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 829 #if defined(OS_MACOSX) | 829 #if defined(OS_MACOSX) |
| 830 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, MacTestCmdUp); | 830 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, MacTestCmdUp); |
| 831 #endif | 831 #endif |
| 832 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, SetHistoryLengthAndPrune); | 832 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, SetHistoryLengthAndPrune); |
| 833 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, ZoomLimit); | 833 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, ZoomLimit); |
| 834 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, NavigateFrame); | 834 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, NavigateFrame); |
| 835 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, | 835 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, |
| 836 ShouldUpdateSelectionTextFromContextMenuParams); | 836 ShouldUpdateSelectionTextFromContextMenuParams); |
| 837 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, BasicRenderFrame); | 837 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, BasicRenderFrame); |
| 838 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, TextInputTypeWithPepper); | 838 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, TextInputTypeWithPepper); |
| 839 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, |
| 840 MessageOrderInDidChangeSelection); |
| 839 FRIEND_TEST_ALL_PREFIXES(SuppressErrorPageTest, Suppresses); | 841 FRIEND_TEST_ALL_PREFIXES(SuppressErrorPageTest, Suppresses); |
| 840 FRIEND_TEST_ALL_PREFIXES(SuppressErrorPageTest, DoesNotSuppress); | 842 FRIEND_TEST_ALL_PREFIXES(SuppressErrorPageTest, DoesNotSuppress); |
| 841 | 843 |
| 842 typedef std::map<GURL, double> HostZoomLevels; | 844 typedef std::map<GURL, double> HostZoomLevels; |
| 843 | 845 |
| 844 enum ErrorPageType { | 846 enum ErrorPageType { |
| 845 DNS_ERROR, | 847 DNS_ERROR, |
| 846 HTTP_404, | 848 HTTP_404, |
| 847 CONNECTION_ERROR, | 849 CONNECTION_ERROR, |
| 848 }; | 850 }; |
| (...skipping 693 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1542 // use the Observer interface to filter IPC messages and receive frame change | 1544 // use the Observer interface to filter IPC messages and receive frame change |
| 1543 // notifications. | 1545 // notifications. |
| 1544 // --------------------------------------------------------------------------- | 1546 // --------------------------------------------------------------------------- |
| 1545 | 1547 |
| 1546 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1548 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1547 }; | 1549 }; |
| 1548 | 1550 |
| 1549 } // namespace content | 1551 } // namespace content |
| 1550 | 1552 |
| 1551 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1553 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |