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