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 861 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
872 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnNavigationHttpPost); | 872 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnNavigationHttpPost); |
873 #if defined(OS_MACOSX) | 873 #if defined(OS_MACOSX) |
874 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, MacTestCmdUp); | 874 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, MacTestCmdUp); |
875 #endif | 875 #endif |
876 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, SetHistoryLengthAndPrune); | 876 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, SetHistoryLengthAndPrune); |
877 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, ZoomLimit); | 877 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, ZoomLimit); |
878 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, NavigateFrame); | 878 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, NavigateFrame); |
879 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, | 879 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, |
880 ShouldUpdateSelectionTextFromContextMenuParams); | 880 ShouldUpdateSelectionTextFromContextMenuParams); |
881 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, BasicRenderFrame); | 881 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, BasicRenderFrame); |
882 FRIEND_TEST_ALL_PREFIXES(RendererAccessibilityTest, | |
Charlie Reis
2013/06/19 15:09:47
nit: This should be alphabetized above the RenderV
dmazzoni
2013/06/19 15:34:21
Done.
| |
883 AccessibilityMessagesQueueWhileSwappedOut); | |
882 | 884 |
883 typedef std::map<GURL, double> HostZoomLevels; | 885 typedef std::map<GURL, double> HostZoomLevels; |
884 | 886 |
885 enum ErrorPageType { | 887 enum ErrorPageType { |
886 DNS_ERROR, | 888 DNS_ERROR, |
887 HTTP_404, | 889 HTTP_404, |
888 CONNECTION_ERROR, | 890 CONNECTION_ERROR, |
889 }; | 891 }; |
890 | 892 |
891 void UpdateURL(WebKit::WebFrame* frame); | 893 void UpdateURL(WebKit::WebFrame* frame); |
(...skipping 670 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 |