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 permissions::mojom::PermissionService instance | 932 // Context shared for each mojom::PermissionService instance created for this |
933 // created for this | |
934 // RFH. | 933 // RFH. |
935 std::unique_ptr<PermissionServiceContext> permission_service_context_; | 934 std::unique_ptr<PermissionServiceContext> permission_service_context_; |
936 | 935 |
937 // The frame's Mojo Shell service. | 936 // The frame's Mojo Shell service. |
938 std::unique_ptr<FrameMojoShell> frame_mojo_shell_; | 937 std::unique_ptr<FrameMojoShell> frame_mojo_shell_; |
939 | 938 |
940 // Holder of Mojo connection with ImageDownloader service in RenderFrame. | 939 // Holder of Mojo connection with ImageDownloader service in RenderFrame. |
941 content::mojom::ImageDownloaderPtr mojo_image_downloader_; | 940 content::mojom::ImageDownloaderPtr mojo_image_downloader_; |
942 | 941 |
943 // Tracks a navigation happening in this frame. Note that while there can be | 942 // Tracks a navigation happening in this frame. Note that while there can be |
(...skipping 26 matching lines...) Expand all Loading... |
970 | 969 |
971 // NOTE: This must be the last member. | 970 // NOTE: This must be the last member. |
972 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 971 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
973 | 972 |
974 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 973 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
975 }; | 974 }; |
976 | 975 |
977 } // namespace content | 976 } // namespace content |
978 | 977 |
979 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 978 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
OLD | NEW |