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

Unified Diff: content/browser/frame_host/render_frame_host_impl.h

Issue 2847743003: Eliminate InterfaceRegistry (Closed)
Patch Set: . Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/frame_host/render_frame_host_impl.h
diff --git a/content/browser/frame_host/render_frame_host_impl.h b/content/browser/frame_host/render_frame_host_impl.h
index 43670f1353f21fb7245526f4c22f5a1b30948dde..b34bf56c1bd68a63c508d3d05982c1d209a4be07 100644
--- a/content/browser/frame_host/render_frame_host_impl.h
+++ b/content/browser/frame_host/render_frame_host_impl.h
@@ -47,7 +47,6 @@
#include "mojo/public/cpp/system/data_pipe.h"
#include "net/http/http_response_headers.h"
#include "services/service_manager/public/cpp/interface_factory.h"
-#include "services/service_manager/public/cpp/interface_registry.h"
#include "third_party/WebKit/public/platform/WebFocusType.h"
#include "third_party/WebKit/public/platform/WebInsecureRequestPolicy.h"
#include "third_party/WebKit/public/web/WebTextDirection.h"
@@ -1165,9 +1164,6 @@ class CONTENT_EXPORT RenderFrameHostImpl
// media::mojom::InterfaceFactory calls to the remote "media" service.
std::unique_ptr<MediaInterfaceProxy> media_interface_proxy_;
- std::vector<std::unique_ptr<service_manager::InterfaceRegistry>>
- media_registries_;
-
std::unique_ptr<AssociatedInterfaceProviderImpl>
remote_associated_interfaces_;
@@ -1187,7 +1183,8 @@ class CONTENT_EXPORT RenderFrameHostImpl
// An InterfaceRegistry that forwards interface requests from Java to the
// RenderFrame. This provides access to interfaces implemented in the renderer
// to Java code in the browser process.
- std::unique_ptr<service_manager::InterfaceRegistry> java_interface_registry_;
+ class JavaInterfaceProvider;
+ std::unique_ptr<JavaInterfaceProvider> java_interface_registry_;
#endif
mojo::BindingSet<service_manager::mojom::InterfaceProvider>
« no previous file with comments | « chrome/browser/chrome_content_browser_client.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