OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "mojo/examples/apptest/example_service_application.h" |
| 6 |
| 7 #include "mojo/public/cpp/application/application_connection.h" |
| 8 |
| 9 namespace mojo { |
| 10 |
| 11 ExampleServiceApplication::ExampleServiceApplication() {} |
| 12 |
| 13 ExampleServiceApplication::~ExampleServiceApplication() {} |
| 14 |
| 15 bool ExampleServiceApplication::ConfigureIncomingConnection( |
| 16 ApplicationConnection* connection) { |
| 17 connection->AddService(&example_service_factory_); |
| 18 return true; |
| 19 } |
| 20 |
| 21 // static |
| 22 ApplicationDelegate* ApplicationDelegate::Create() { |
| 23 return new ExampleServiceApplication(); |
| 24 } |
| 25 |
| 26 } // namespace mojo |
OLD | NEW |