OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. |
3 * Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
6 | 6 |
7 /* | 7 /* |
8 * Post-message based test for simple rpc based access to name services. | 8 * Post-message based test for simple rpc based access to name services. |
9 * | 9 * |
10 * Converted from srpc_nameservice_test (deprecated), i.e., C -> C++, | 10 * Converted from srpc_nameservice_test (deprecated), i.e., C -> C++, |
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
257 }; | 257 }; |
258 | 258 |
259 namespace pp { | 259 namespace pp { |
260 | 260 |
261 // Factory function for your specialization of the Module object. | 261 // Factory function for your specialization of the Module object. |
262 Module* CreateModule() { | 262 Module* CreateModule() { |
263 return new MyModule(); | 263 return new MyModule(); |
264 } | 264 } |
265 | 265 |
266 } // namespace pp | 266 } // namespace pp |
OLD | NEW |