| 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 885 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 896 // The most recently received accessibility tree - for testing only. | 896 // The most recently received accessibility tree - for testing only. |
| 897 scoped_ptr<ui::AXTree> ax_tree_for_testing_; | 897 scoped_ptr<ui::AXTree> ax_tree_for_testing_; |
| 898 // Flag to not create a BrowserAccessibilityManager, for testing. If one | 898 // Flag to not create a BrowserAccessibilityManager, for testing. If one |
| 899 // already exists it will still be used. | 899 // already exists it will still be used. |
| 900 bool no_create_browser_accessibility_manager_for_testing_; | 900 bool no_create_browser_accessibility_manager_for_testing_; |
| 901 | 901 |
| 902 // PlzNavigate: Owns the stream used in navigations to store the body of the | 902 // PlzNavigate: Owns the stream used in navigations to store the body of the |
| 903 // response once it has started. | 903 // response once it has started. |
| 904 scoped_ptr<StreamHandle> stream_handle_; | 904 scoped_ptr<StreamHandle> stream_handle_; |
| 905 | 905 |
| 906 // Context shared for each PermissionService instance created for this RFH. | 906 // Context shared for each mojom::PermissionService instance created for this |
| 907 // RFH. |
| 907 scoped_ptr<PermissionServiceContext> permission_service_context_; | 908 scoped_ptr<PermissionServiceContext> permission_service_context_; |
| 908 | 909 |
| 909 // The frame's Mojo Shell service. | 910 // The frame's Mojo Shell service. |
| 910 scoped_ptr<FrameMojoShell> frame_mojo_shell_; | 911 scoped_ptr<FrameMojoShell> frame_mojo_shell_; |
| 911 | 912 |
| 912 // Holder of Mojo connection with ImageDownloader service in RenderFrame. | 913 // Holder of Mojo connection with ImageDownloader service in RenderFrame. |
| 913 content::mojom::ImageDownloaderPtr mojo_image_downloader_; | 914 content::mojom::ImageDownloaderPtr mojo_image_downloader_; |
| 914 | 915 |
| 915 // Tracks a navigation happening in this frame. Note that while there can be | 916 // Tracks a navigation happening in this frame. Note that while there can be |
| 916 // two navigations in the same FrameTreeNode, there can only be one | 917 // two navigations in the same FrameTreeNode, there can only be one |
| (...skipping 30 matching lines...) Expand all Loading... |
| 947 | 948 |
| 948 // NOTE: This must be the last member. | 949 // NOTE: This must be the last member. |
| 949 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; | 950 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; |
| 950 | 951 |
| 951 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); | 952 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); |
| 952 }; | 953 }; |
| 953 | 954 |
| 954 } // namespace content | 955 } // namespace content |
| 955 | 956 |
| 956 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ | 957 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ |
| OLD | NEW |