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 "services/shell/public/cpp/service.h" |
| 6 |
| 7 namespace shell { |
| 8 |
| 9 Service::Service() {} |
| 10 Service::~Service() {} |
| 11 |
| 12 void Service::OnStart(Connector* connector, const Identity& identity, |
| 13 uint32_t id) { |
| 14 } |
| 15 |
| 16 bool Service::OnConnect(Connection* connection) { |
| 17 return false; |
| 18 } |
| 19 |
| 20 bool Service::OnStop() { return true; } |
| 21 |
| 22 InterfaceProvider* Service::GetInterfaceProviderForConnection() { |
| 23 return nullptr; |
| 24 } |
| 25 |
| 26 InterfaceRegistry* Service::GetInterfaceRegistryForConnection() { |
| 27 return nullptr; |
| 28 } |
| 29 |
| 30 } // namespace shell |
OLD | NEW |