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

Unified Diff: content/browser/mojo/mojo_child_connection.h

Issue 2201183003: Remove outgoing interface registry on RPH (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/browser/gpu/gpu_process_host.cc ('k') | content/browser/mojo/mojo_child_connection.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/mojo/mojo_child_connection.h
diff --git a/content/browser/mojo/mojo_child_connection.h b/content/browser/mojo/mojo_child_connection.h
index 2a6453053575b64e599da60f85093b4ad7282159..3d91cc6579dd41e4b39dbc4b6981faa702db1e7f 100644
--- a/content/browser/mojo/mojo_child_connection.h
+++ b/content/browser/mojo/mojo_child_connection.h
@@ -15,13 +15,8 @@
#include "base/sequenced_task_runner.h"
#include "services/shell/public/cpp/identity.h"
#include "services/shell/public/cpp/interface_provider.h"
-#include "services/shell/public/cpp/interface_registry.h"
#include "services/shell/public/interfaces/connector.mojom.h"
-#if defined(OS_ANDROID)
-#include "content/public/browser/android/interface_registry_android.h"
-#endif
-
namespace shell {
class Connection;
class Connector;
@@ -45,10 +40,6 @@ class MojoChildConnection {
scoped_refptr<base::SequencedTaskRunner> io_task_runner);
~MojoChildConnection();
- shell::InterfaceRegistry* GetInterfaceRegistry() {
- return &interface_registry_;
- }
-
shell::InterfaceProvider* GetRemoteInterfaces() {
return &remote_interfaces_;
}
@@ -70,20 +61,12 @@ class MojoChildConnection {
private:
class IOThreadContext;
- void GetInterface(const mojo::String& interface_name,
- mojo::ScopedMessagePipeHandle request_handle);
-
scoped_refptr<IOThreadContext> context_;
shell::Identity child_identity_;
const std::string service_token_;
- shell::InterfaceRegistry interface_registry_;
shell::InterfaceProvider remote_interfaces_;
-#if defined(OS_ANDROID)
- std::unique_ptr<InterfaceRegistryAndroid> interface_registry_android_;
-#endif
-
base::WeakPtrFactory<MojoChildConnection> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(MojoChildConnection);
« no previous file with comments | « content/browser/gpu/gpu_process_host.cc ('k') | content/browser/mojo/mojo_child_connection.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698