| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // DEPRECATED -- do not use: include individual header files instead. | 5 // DEPRECATED -- do not use: include individual header files instead. |
| 6 // | 6 // |
| 7 // TODO(vtl): Delete this header file. | 7 // TODO(vtl): Delete this header file. |
| 8 // | 8 // |
| 9 // This is a catch-all header that includes everything. | |
| 10 // | |
| 11 // Note: This header should be compilable as C. | 9 // Note: This header should be compilable as C. |
| 12 | 10 |
| 13 #ifndef MOJO_PUBLIC_C_SYSTEM_CORE_H_ | 11 #ifndef MOJO_PUBLIC_C_SYSTEM_CORE_H_ |
| 14 #define MOJO_PUBLIC_C_SYSTEM_CORE_H_ | 12 #define MOJO_PUBLIC_C_SYSTEM_CORE_H_ |
| 15 | 13 |
| 16 #include "mojo/public/c/system/buffer.h" | 14 #include "mojo/public/c/system/buffer.h" |
| 17 #include "mojo/public/c/system/data_pipe.h" | 15 #include "mojo/public/c/system/data_pipe.h" |
| 18 #include "mojo/public/c/system/functions.h" | |
| 19 #include "mojo/public/c/system/handle.h" | 16 #include "mojo/public/c/system/handle.h" |
| 20 #include "mojo/public/c/system/macros.h" | 17 #include "mojo/public/c/system/macros.h" |
| 21 #include "mojo/public/c/system/main.h" | 18 #include "mojo/public/c/system/main.h" |
| 22 #include "mojo/public/c/system/message_pipe.h" | 19 #include "mojo/public/c/system/message_pipe.h" |
| 23 #include "mojo/public/c/system/result.h" | 20 #include "mojo/public/c/system/result.h" |
| 24 #include "mojo/public/c/system/types.h" | 21 #include "mojo/public/c/system/time.h" |
| 22 #include "mojo/public/c/system/wait.h" |
| 25 | 23 |
| 26 #endif // MOJO_PUBLIC_C_SYSTEM_CORE_H_ | 24 #endif // MOJO_PUBLIC_C_SYSTEM_CORE_H_ |
| OLD | NEW |