| 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 823 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 834 #endif | 834 #endif |
| 835 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, SetHistoryLengthAndPrune); | 835 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, SetHistoryLengthAndPrune); |
| 836 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, ZoomLimit); | 836 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, ZoomLimit); |
| 837 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, NavigateFrame); | 837 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, NavigateFrame); |
| 838 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, | 838 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, |
| 839 ShouldUpdateSelectionTextFromContextMenuParams); | 839 ShouldUpdateSelectionTextFromContextMenuParams); |
| 840 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, BasicRenderFrame); | 840 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, BasicRenderFrame); |
| 841 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, TextInputTypeWithPepper); | 841 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, TextInputTypeWithPepper); |
| 842 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, | 842 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, |
| 843 MessageOrderInDidChangeSelection); | 843 MessageOrderInDidChangeSelection); |
| 844 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, SendCandidateWindowEvents); |
| 844 FRIEND_TEST_ALL_PREFIXES(SuppressErrorPageTest, Suppresses); | 845 FRIEND_TEST_ALL_PREFIXES(SuppressErrorPageTest, Suppresses); |
| 845 FRIEND_TEST_ALL_PREFIXES(SuppressErrorPageTest, DoesNotSuppress); | 846 FRIEND_TEST_ALL_PREFIXES(SuppressErrorPageTest, DoesNotSuppress); |
| 846 | 847 |
| 847 typedef std::map<GURL, double> HostZoomLevels; | 848 typedef std::map<GURL, double> HostZoomLevels; |
| 848 | 849 |
| 849 enum ErrorPageType { | 850 enum ErrorPageType { |
| 850 DNS_ERROR, | 851 DNS_ERROR, |
| 851 HTTP_404, | 852 HTTP_404, |
| 852 CONNECTION_ERROR, | 853 CONNECTION_ERROR, |
| 853 }; | 854 }; |
| (...skipping 709 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 |