Index: content/gpu/gpu_child_thread.h |
diff --git a/content/gpu/gpu_child_thread.h b/content/gpu/gpu_child_thread.h |
index f51bba18b6a86bf222a1e53b6100a4150a5f1821..7eb8c4629f482049a007c183b2356e7e18973fff 100644 |
--- a/content/gpu/gpu_child_thread.h |
+++ b/content/gpu/gpu_child_thread.h |
@@ -28,7 +28,6 @@ |
#include "gpu/ipc/service/gpu_config.h" |
#include "gpu/ipc/service/x_util.h" |
#include "mojo/public/cpp/bindings/binding_set.h" |
-#include "mojo/public/cpp/bindings/interface_request.h" |
#include "ui/gfx/native_widget_types.h" |
namespace gpu { |
@@ -87,9 +86,6 @@ class GpuChildThread : public ChildThreadImpl, |
bool Send(IPC::Message* msg) override; |
bool OnControlMessageReceived(const IPC::Message& msg) override; |
bool OnMessageReceived(const IPC::Message& msg) override; |
- bool OnConnect(shell::Connection* connection) override; |
- shell::InterfaceRegistry* GetInterfaceRegistryForConnection() override; |
- shell::InterfaceProvider* GetInterfaceProviderForConnection() override; |
// gpu::GpuChannelManagerDelegate: |
void SetActiveURL(const GURL& url) override; |
@@ -138,8 +134,7 @@ class GpuChildThread : public ChildThreadImpl, |
#endif |
void OnLoseAllContexts(); |
- void BindProcessControlRequest( |
- mojo::InterfaceRequest<mojom::ProcessControl> request); |
+ void BindProcessControlRequest(mojom::ProcessControlRequest request); |
gpu::GpuPreferences gpu_preferences_; |
@@ -179,8 +174,6 @@ class GpuChildThread : public ChildThreadImpl, |
// Bindings to the mojom::ProcessControl impl. |
mojo::BindingSet<mojom::ProcessControl> process_control_bindings_; |
- base::Closure resume_interface_bindings_callback_; |
- |
DISALLOW_COPY_AND_ASSIGN(GpuChildThread); |
}; |