OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
(...skipping 646 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
657 RenderFrameHostDelegate* delegate, | 657 RenderFrameHostDelegate* delegate, |
658 RenderWidgetHostDelegate* rwh_delegate, | 658 RenderWidgetHostDelegate* rwh_delegate, |
659 FrameTree* frame_tree, | 659 FrameTree* frame_tree, |
660 FrameTreeNode* frame_tree_node, | 660 FrameTreeNode* frame_tree_node, |
661 int32_t routing_id, | 661 int32_t routing_id, |
662 int32_t widget_routing_id, | 662 int32_t widget_routing_id, |
663 bool hidden, | 663 bool hidden, |
664 bool renderer_initiated_creation); | 664 bool renderer_initiated_creation); |
665 | 665 |
666 private: | 666 private: |
| 667 friend class RenderFrameHostFeaturePolicyTest; |
667 friend class TestRenderFrameHost; | 668 friend class TestRenderFrameHost; |
668 friend class TestRenderViewHost; | 669 friend class TestRenderViewHost; |
669 | 670 |
670 FRIEND_TEST_ALL_PREFIXES(RenderFrameHostManagerTest, | 671 FRIEND_TEST_ALL_PREFIXES(RenderFrameHostManagerTest, |
671 CreateRenderViewAfterProcessKillAndClosedProxy); | 672 CreateRenderViewAfterProcessKillAndClosedProxy); |
672 FRIEND_TEST_ALL_PREFIXES(RenderFrameHostManagerTest, DontSelectInvalidFiles); | 673 FRIEND_TEST_ALL_PREFIXES(RenderFrameHostManagerTest, DontSelectInvalidFiles); |
673 FRIEND_TEST_ALL_PREFIXES(RenderFrameHostManagerTest, | 674 FRIEND_TEST_ALL_PREFIXES(RenderFrameHostManagerTest, |
674 RestoreFileAccessForHistoryNavigation); | 675 RestoreFileAccessForHistoryNavigation); |
675 FRIEND_TEST_ALL_PREFIXES(RenderFrameHostManagerTest, | 676 FRIEND_TEST_ALL_PREFIXES(RenderFrameHostManagerTest, |
676 RestoreSubframeFileAccessForHistoryNavigation); | 677 RestoreSubframeFileAccessForHistoryNavigation); |
(...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1233 | 1234 |
1234 // NOTE: This must be the last member. | 1235 // NOTE: This must be the last member. |
1235 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 1236 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
1236 | 1237 |
1237 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 1238 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
1238 }; | 1239 }; |
1239 | 1240 |
1240 } // namespace content | 1241 } // namespace content |
1241 | 1242 |
1242 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 1243 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
OLD | NEW |