| OLD | NEW |
| (Empty) | |
| 1 /* |
| 2 * Copyright (c) 2011 The Native Client Authors. All rights reserved. |
| 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. |
| 5 */ |
| 6 #ifndef NATIVE_CLIENT_SRC_TRUSTED_REVERSE_SERVICE_REVERSE_CONTROL_RPC_H_ |
| 7 #define NATIVE_CLIENT_SRC_TRUSTED_REVERSE_SERVICE_REVERSE_CONTROL_RPC_H_ |
| 8 |
| 9 /* |
| 10 * Reverse channel control RPCs. Used by the service runtime reverse |
| 11 * setup proceedure, testing, and by the manifest proxy to add a new |
| 12 * client channel. |
| 13 */ |
| 14 |
| 15 #define NACL_REVERSE_CONTROL_TEST "test:s:" |
| 16 #define NACL_REVERSE_CONTROL_LOG "log:s:" |
| 17 #define NACL_REVERSE_CONTROL_ADD_CHANNEL "add_channel::b" |
| 18 |
| 19 #endif |
| OLD | NEW |