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 777 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
788 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnHandleKeyboardEvent); | 788 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnHandleKeyboardEvent); |
789 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnImeStateChanged); | 789 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnImeStateChanged); |
790 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnNavStateChanged); | 790 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnNavStateChanged); |
791 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnSetTextDirection); | 791 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnSetTextDirection); |
792 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnUpdateWebPreferences); | 792 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnUpdateWebPreferences); |
793 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, SendSwapOutACK); | 793 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, SendSwapOutACK); |
794 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, StaleNavigationsIgnored); | 794 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, StaleNavigationsIgnored); |
795 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, UpdateTargetURLWithInvalidURL); | 795 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, UpdateTargetURLWithInvalidURL); |
796 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, | 796 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, |
797 GetCompositionCharacterBoundsTest); | 797 GetCompositionCharacterBoundsTest); |
| 798 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, OnNavigationHttpPost); |
798 #if defined(OS_MACOSX) | 799 #if defined(OS_MACOSX) |
799 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, MacTestCmdUp); | 800 FRIEND_TEST_ALL_PREFIXES(RenderViewTest, MacTestCmdUp); |
800 #endif | 801 #endif |
801 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, SetHistoryLengthAndPrune); | 802 FRIEND_TEST_ALL_PREFIXES(RenderViewImplTest, SetHistoryLengthAndPrune); |
802 | 803 |
803 typedef std::map<GURL, double> HostZoomLevels; | 804 typedef std::map<GURL, double> HostZoomLevels; |
804 | 805 |
805 enum ErrorPageType { | 806 enum ErrorPageType { |
806 DNS_ERROR, | 807 DNS_ERROR, |
807 HTTP_404, | 808 HTTP_404, |
(...skipping 624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1432 // bunch of stuff, you should probably create a helper class and put your | 1433 // bunch of stuff, you should probably create a helper class and put your |
1433 // data and methods on that to avoid bloating RenderView more. You can | 1434 // data and methods on that to avoid bloating RenderView more. You can |
1434 // use the Observer interface to filter IPC messages and receive frame change | 1435 // use the Observer interface to filter IPC messages and receive frame change |
1435 // notifications. | 1436 // notifications. |
1436 // --------------------------------------------------------------------------- | 1437 // --------------------------------------------------------------------------- |
1437 | 1438 |
1438 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1439 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1439 }; | 1440 }; |
1440 | 1441 |
1441 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1442 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |