| 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 636 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 647 RenderFrameHostDelegate* delegate, | 647 RenderFrameHostDelegate* delegate, |
| 648 RenderWidgetHostDelegate* rwh_delegate, | 648 RenderWidgetHostDelegate* rwh_delegate, |
| 649 FrameTree* frame_tree, | 649 FrameTree* frame_tree, |
| 650 FrameTreeNode* frame_tree_node, | 650 FrameTreeNode* frame_tree_node, |
| 651 int32_t routing_id, | 651 int32_t routing_id, |
| 652 int32_t widget_routing_id, | 652 int32_t widget_routing_id, |
| 653 bool hidden, | 653 bool hidden, |
| 654 bool renderer_initiated_creation); | 654 bool renderer_initiated_creation); |
| 655 | 655 |
| 656 private: | 656 private: |
| 657 friend class PermissionServiceImplTest; |
| 657 friend class TestRenderFrameHost; | 658 friend class TestRenderFrameHost; |
| 658 friend class TestRenderViewHost; | 659 friend class TestRenderViewHost; |
| 659 | 660 |
| 660 FRIEND_TEST_ALL_PREFIXES(RenderFrameHostManagerTest, | 661 FRIEND_TEST_ALL_PREFIXES(RenderFrameHostManagerTest, |
| 661 CreateRenderViewAfterProcessKillAndClosedProxy); | 662 CreateRenderViewAfterProcessKillAndClosedProxy); |
| 662 FRIEND_TEST_ALL_PREFIXES(RenderFrameHostManagerTest, DontSelectInvalidFiles); | 663 FRIEND_TEST_ALL_PREFIXES(RenderFrameHostManagerTest, DontSelectInvalidFiles); |
| 663 FRIEND_TEST_ALL_PREFIXES(RenderFrameHostManagerTest, | 664 FRIEND_TEST_ALL_PREFIXES(RenderFrameHostManagerTest, |
| 664 RestoreFileAccessForHistoryNavigation); | 665 RestoreFileAccessForHistoryNavigation); |
| 665 FRIEND_TEST_ALL_PREFIXES(RenderFrameHostManagerTest, | 666 FRIEND_TEST_ALL_PREFIXES(RenderFrameHostManagerTest, |
| 666 RestoreSubframeFileAccessForHistoryNavigation); | 667 RestoreSubframeFileAccessForHistoryNavigation); |
| (...skipping 551 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1218 | 1219 |
| 1219 // NOTE: This must be the last member. | 1220 // NOTE: This must be the last member. |
| 1220 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 1221 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 1221 | 1222 |
| 1222 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 1223 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 1223 }; | 1224 }; |
| 1224 | 1225 |
| 1225 } // namespace content | 1226 } // namespace content |
| 1226 | 1227 |
| 1227 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 1228 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |