Index: services/shell/public/cpp/lib/connection_impl.h |
diff --git a/services/shell/public/cpp/lib/connection_impl.h b/services/shell/public/cpp/lib/connection_impl.h |
index d8990f3ffadbf40d510807df255b40434ef9f141..2cbcaa32451dae5c20aa6549cd403aa05f36cd19 100644 |
--- a/services/shell/public/cpp/lib/connection_impl.h |
+++ b/services/shell/public/cpp/lib/connection_impl.h |
@@ -10,7 +10,6 @@ |
#include <set> |
#include <string> |
-#include "base/callback.h" |
#include "mojo/public/cpp/bindings/binding.h" |
#include "services/shell/public/cpp/capabilities.h" |
#include "services/shell/public/cpp/connection.h" |
@@ -50,7 +49,7 @@ |
shell::mojom::ConnectResult GetResult() const override; |
bool IsPending() const override; |
uint32_t GetRemoteInstanceID() const override; |
- void AddConnectionCompletedClosure(const base::Closure& callback) override; |
+ void AddConnectionCompletedClosure(const mojo::Closure& callback) override; |
bool AllowsInterface(const std::string& interface_name) const override; |
mojom::InterfaceProvider* GetRemoteInterfaceProvider() override; |
InterfaceRegistry* GetInterfaceRegistry() override; |
@@ -67,7 +66,7 @@ |
State state_; |
shell::mojom::ConnectResult result_ = shell::mojom::ConnectResult::SUCCEEDED; |
- std::vector<base::Closure> connection_completed_callbacks_; |
+ std::vector<mojo::Closure> connection_completed_callbacks_; |
InterfaceRegistry interfaces_; |
RemoteInterfaceRegistry remote_interfaces_; |