Index: services/shell/public/cpp/interface_factory_impl.h |
diff --git a/services/shell/public/cpp/interface_factory_impl.h b/services/shell/public/cpp/interface_factory_impl.h |
index 88fa2a28f9ddb256f2837e15cd7de3192ab0bb2d..7510a0843b92908c823a72d56eb9084aa659c975 100644 |
--- a/services/shell/public/cpp/interface_factory_impl.h |
+++ b/services/shell/public/cpp/interface_factory_impl.h |
@@ -7,7 +7,7 @@ |
#include "services/shell/public/cpp/interface_factory.h" |
-namespace mojo { |
+namespace shell { |
// Use this class to allocate and bind instances of Impl to interface requests. |
// The lifetime of the constructed Impl is bound to the pipe. |
@@ -18,7 +18,7 @@ class InterfaceFactoryImpl : public InterfaceFactory<Interface> { |
virtual ~InterfaceFactoryImpl() {} |
virtual void Create(Connection* connection, |
- InterfaceRequest<Interface> request) override { |
+ mojo::InterfaceRequest<Interface> request) override { |
BindToRequest(new Impl(), &request); |
} |
}; |
@@ -36,7 +36,7 @@ class InterfaceFactoryImplWithContext : public InterfaceFactory<Interface> { |
virtual ~InterfaceFactoryImplWithContext() {} |
virtual void Create(Connection* connection, |
- InterfaceRequest<Interface> request) override { |
+ mojo::InterfaceRequest<Interface> request) override { |
BindToRequest(new Impl(context_), &request); |
} |
@@ -44,6 +44,6 @@ class InterfaceFactoryImplWithContext : public InterfaceFactory<Interface> { |
Context* context_; |
}; |
-} // namespace mojo |
+} // namespace shell |
#endif // SERVICES_SHELL_PUBLIC_CPP_INTERFACE_FACTORY_IMPL_H_ |