Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(516)

Side by Side Diff: content/browser/frame_host/render_frame_host_impl.h

Issue 2191033002: Split ServiceRegistryAndroid into InterfaceRegistryAndroid and InterfaceProviderAndroid (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: . Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 27 matching lines...) Expand all
38 #include "content/public/common/javascript_message_type.h" 38 #include "content/public/common/javascript_message_type.h"
39 #include "net/http/http_response_headers.h" 39 #include "net/http/http_response_headers.h"
40 #include "services/shell/public/cpp/interface_registry.h" 40 #include "services/shell/public/cpp/interface_registry.h"
41 #include "third_party/WebKit/public/platform/WebInsecureRequestPolicy.h" 41 #include "third_party/WebKit/public/platform/WebInsecureRequestPolicy.h"
42 #include "third_party/WebKit/public/web/WebTextDirection.h" 42 #include "third_party/WebKit/public/web/WebTextDirection.h"
43 #include "third_party/WebKit/public/web/WebTreeScopeType.h" 43 #include "third_party/WebKit/public/web/WebTreeScopeType.h"
44 #include "ui/accessibility/ax_node_data.h" 44 #include "ui/accessibility/ax_node_data.h"
45 #include "ui/base/page_transition_types.h" 45 #include "ui/base/page_transition_types.h"
46 46
47 #if defined(OS_ANDROID) 47 #if defined(OS_ANDROID)
48 #include "content/public/browser/android/service_registry_android.h" 48 #include "content/public/browser/android/interface_registry_android.h"
49 #endif 49 #endif
50 50
51 class GURL; 51 class GURL;
52 struct AccessibilityHostMsg_EventParams; 52 struct AccessibilityHostMsg_EventParams;
53 struct AccessibilityHostMsg_FindInPageResultParams; 53 struct AccessibilityHostMsg_FindInPageResultParams;
54 struct AccessibilityHostMsg_LocationChangeParams; 54 struct AccessibilityHostMsg_LocationChangeParams;
55 struct FrameHostMsg_DidFailProvisionalLoadWithError_Params; 55 struct FrameHostMsg_DidFailProvisionalLoadWithError_Params;
56 struct FrameHostMsg_OpenURL_Params; 56 struct FrameHostMsg_OpenURL_Params;
57 struct FrameMsg_TextTrackSettings_Params; 57 struct FrameMsg_TextTrackSettings_Params;
58 #if defined(USE_EXTERNAL_POPUP_MENU) 58 #if defined(USE_EXTERNAL_POPUP_MENU)
(...skipping 896 matching lines...) Expand 10 before | Expand all | Expand 10 after
955 955
956 // Used to swap out or shut down this RFH when the unload event is taking too 956 // Used to swap out or shut down this RFH when the unload event is taking too
957 // long to execute, depending on the number of active frames in the 957 // long to execute, depending on the number of active frames in the
958 // SiteInstance. May be null in tests. 958 // SiteInstance. May be null in tests.
959 std::unique_ptr<TimeoutMonitor> swapout_event_monitor_timeout_; 959 std::unique_ptr<TimeoutMonitor> swapout_event_monitor_timeout_;
960 960
961 std::unique_ptr<shell::InterfaceRegistry> interface_registry_; 961 std::unique_ptr<shell::InterfaceRegistry> interface_registry_;
962 std::unique_ptr<shell::InterfaceProvider> remote_interfaces_; 962 std::unique_ptr<shell::InterfaceProvider> remote_interfaces_;
963 963
964 #if defined(OS_ANDROID) 964 #if defined(OS_ANDROID)
965 std::unique_ptr<ServiceRegistryAndroid> service_registry_android_; 965 std::unique_ptr<InterfaceRegistryAndroid> interface_registry_android_;
966 #endif 966 #endif
967 967
968 std::unique_ptr<WebBluetoothServiceImpl> web_bluetooth_service_; 968 std::unique_ptr<WebBluetoothServiceImpl> web_bluetooth_service_;
969 969
970 // The object managing the accessibility tree for this frame. 970 // The object managing the accessibility tree for this frame.
971 std::unique_ptr<BrowserAccessibilityManager> browser_accessibility_manager_; 971 std::unique_ptr<BrowserAccessibilityManager> browser_accessibility_manager_;
972 972
973 // This is nonzero if we sent an accessibility reset to the renderer and 973 // This is nonzero if we sent an accessibility reset to the renderer and
974 // we're waiting for an IPC containing this reset token (sequentially 974 // we're waiting for an IPC containing this reset token (sequentially
975 // assigned) and a complete replacement accessibility tree. 975 // assigned) and a complete replacement accessibility tree.
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
1046 1046
1047 // NOTE: This must be the last member. 1047 // NOTE: This must be the last member.
1048 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_; 1048 base::WeakPtrFactory<RenderFrameHostImpl> weak_ptr_factory_;
1049 1049
1050 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl); 1050 DISALLOW_COPY_AND_ASSIGN(RenderFrameHostImpl);
1051 }; 1051 };
1052 1052
1053 } // namespace content 1053 } // namespace content
1054 1054
1055 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_ 1055 #endif // CONTENT_BROWSER_FRAME_HOST_RENDER_FRAME_HOST_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/android/service_registry_android_impl.cc ('k') | content/browser/frame_host/render_frame_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698