| 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 #if defined(OS_MACOSX) | 822 #if defined(OS_MACOSX) |
| 823 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, MacTestCmdUp); | 823 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, MacTestCmdUp); |
| 824 #endif | 824 #endif |
| 825 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, SetHistoryLengthAndPrune); | 825 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, SetHistoryLengthAndPrune); |
| 826 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, ZoomLimit); | 826 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, ZoomLimit); |
| 827 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, NavigateFrame); | 827 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, NavigateFrame); |
| 828 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, | 828 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, |
| 829 ShouldUpdateSelectionTextFromContextMenuParams); | 829 ShouldUpdateSelectionTextFromContextMenuParams); |
| 830 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, BasicRenderFrame); | 830 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, BasicRenderFrame); |
| 831 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, TextInputTypeWithPepper); | 831 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, TextInputTypeWithPepper); |
| 832 FRIEND_TEST_ALL_PREFIXES(SuppressErrorPageTest, Suppresses); |
| 833 FRIEND_TEST_ALL_PREFIXES(SuppressErrorPageTest, DoesNotSuppress); |
| 832 | 834 |
| 833 typedef std::map<GURL, double> HostZoomLevels; | 835 typedef std::map<GURL, double> HostZoomLevels; |
| 834 | 836 |
| 835 enum ErrorPageType { | 837 enum ErrorPageType { |
| 836 DNS_ERROR, | 838 DNS_ERROR, |
| 837 HTTP_404, | 839 HTTP_404, |
| 838 CONNECTION_ERROR, | 840 CONNECTION_ERROR, |
| 839 }; | 841 }; |
| 840 | 842 |
| 841 static WebKit::WebReferrerPolicy GetReferrerPolicyFromRequest( | 843 static WebKit::WebReferrerPolicy GetReferrerPolicyFromRequest( |
| (...skipping 682 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1524 // use the Observer interface to filter IPC messages and receive frame change | 1526 // use the Observer interface to filter IPC messages and receive frame change |
| 1525 // notifications. | 1527 // notifications. |
| 1526 // --------------------------------------------------------------------------- | 1528 // --------------------------------------------------------------------------- |
| 1527 | 1529 |
| 1528 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1530 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
| 1529 }; | 1531 }; |
| 1530 | 1532 |
| 1531 } // namespace content | 1533 } // namespace content |
| 1532 | 1534 |
| 1533 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1535 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
| OLD | NEW |