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 911 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
922 // The most recently received accessibility tree - for testing only. | 922 // The most recently received accessibility tree - for testing only. |
923 std::unique_ptr<ui::AXTree> ax_tree_for_testing_; | 923 std::unique_ptr<ui::AXTree> ax_tree_for_testing_; |
924 // Flag to not create a BrowserAccessibilityManager, for testing. If one | 924 // Flag to not create a BrowserAccessibilityManager, for testing. If one |
925 // already exists it will still be used. | 925 // already exists it will still be used. |
926 bool no_create_browser_accessibility_manager_for_testing_; | 926 bool no_create_browser_accessibility_manager_for_testing_; |
927 | 927 |
928 // PlzNavigate: Owns the stream used in navigations to store the body of the | 928 // PlzNavigate: Owns the stream used in navigations to store the body of the |
929 // response once it has started. | 929 // response once it has started. |
930 std::unique_ptr<StreamHandle> stream_handle_; | 930 std::unique_ptr<StreamHandle> stream_handle_; |
931 | 931 |
932 // Context shared for each mojom::PermissionService instance created for this | 932 // Context shared for each permissions::mojom::PermissionService instance |
| 933 // created for this |
933 // RFH. | 934 // RFH. |
934 std::unique_ptr<PermissionServiceContext> permission_service_context_; | 935 std::unique_ptr<PermissionServiceContext> permission_service_context_; |
935 | 936 |
936 // The frame's Mojo Shell service. | 937 // The frame's Mojo Shell service. |
937 std::unique_ptr<FrameMojoShell> frame_mojo_shell_; | 938 std::unique_ptr<FrameMojoShell> frame_mojo_shell_; |
938 | 939 |
939 // Holder of Mojo connection with ImageDownloader service in RenderFrame. | 940 // Holder of Mojo connection with ImageDownloader service in RenderFrame. |
940 content::mojom::ImageDownloaderPtr mojo_image_downloader_; | 941 content::mojom::ImageDownloaderPtr mojo_image_downloader_; |
941 | 942 |
942 // Tracks a navigation happening in this frame. Note that while there can be | 943 // Tracks a navigation happening in this frame. Note that while there can be |
(...skipping 26 matching lines...) Expand all Loading... |
969 | 970 |
970 // NOTE: This must be the last member. | 971 // NOTE: This must be the last member. |
971 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 972 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
972 | 973 |
973 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 974 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
974 }; | 975 }; |
975 | 976 |
976 } // namespace content | 977 } // namespace content |
977 | 978 |
978 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 979 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
OLD | NEW |