| Index: content/public/test/test_mojo_app.cc
|
| diff --git a/content/public/test/test_mojo_app.cc b/content/public/test/test_mojo_app.cc
|
| index 253c64fbe8005994cbe5dc2ab35319f43b05a156..fa3884c48ee2198672205057f314c7f6d419a5a2 100644
|
| --- a/content/public/test/test_mojo_app.cc
|
| +++ b/content/public/test/test_mojo_app.cc
|
| @@ -23,12 +23,13 @@ TestMojoApp::~TestMojoApp() {
|
|
|
| bool TestMojoApp::AcceptConnection(mojo::Connection* connection) {
|
| requestor_name_ = connection->GetRemoteIdentity().name();
|
| - connection->AddInterface<TestMojoService>(this);
|
| + connection->AddInterface<mojom::TestMojoService>(this);
|
| return true;
|
| }
|
|
|
| -void TestMojoApp::Create(mojo::Connection* connection,
|
| - mojo::InterfaceRequest<TestMojoService> request) {
|
| +void TestMojoApp::Create(
|
| + mojo::Connection* connection,
|
| + mojo::InterfaceRequest<mojom::TestMojoService> request) {
|
| DCHECK(!service_binding_.is_bound());
|
| service_binding_.Bind(std::move(request));
|
| }
|
|
|