| OLD | NEW |
| 1 /* | 1 /* |
| 2 * | 2 * |
| 3 * Copyright 2016, Google Inc. | 3 * Copyright 2016, Google Inc. |
| 4 * All rights reserved. | 4 * All rights reserved. |
| 5 * | 5 * |
| 6 * Redistribution and use in source and binary forms, with or without | 6 * Redistribution and use in source and binary forms, with or without |
| 7 * modification, are permitted provided that the following conditions are | 7 * modification, are permitted provided that the following conditions are |
| 8 * met: | 8 * met: |
| 9 * | 9 * |
| 10 * * Redistributions of source code must retain the above copyright | 10 * * Redistributions of source code must retain the above copyright |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 31 * | 31 * |
| 32 */ | 32 */ |
| 33 | 33 |
| 34 #include <grpc/byte_buffer.h> | 34 #include <grpc/byte_buffer.h> |
| 35 #include <grpc/byte_buffer_reader.h> | 35 #include <grpc/byte_buffer_reader.h> |
| 36 #include <grpc/census.h> | |
| 37 #include <grpc/compression.h> | 36 #include <grpc/compression.h> |
| 38 #include <grpc/grpc.h> | 37 #include <grpc/grpc.h> |
| 39 #include <grpc/grpc_security.h> | 38 #include <grpc/grpc_security.h> |
| 40 #include <grpc/grpc_security_constants.h> | 39 #include <grpc/grpc_security_constants.h> |
| 41 #include <grpc/impl/codegen/atm.h> | 40 #include <grpc/impl/codegen/atm.h> |
| 42 #include <grpc/impl/codegen/byte_buffer_reader.h> | 41 #include <grpc/impl/codegen/byte_buffer_reader.h> |
| 43 #include <grpc/impl/codegen/compression_types.h> | 42 #include <grpc/impl/codegen/compression_types.h> |
| 44 #include <grpc/impl/codegen/connectivity_state.h> | 43 #include <grpc/impl/codegen/connectivity_state.h> |
| 45 #include <grpc/impl/codegen/gpr_types.h> | 44 #include <grpc/impl/codegen/gpr_types.h> |
| 46 #include <grpc/impl/codegen/grpc_types.h> | 45 #include <grpc/impl/codegen/grpc_types.h> |
| (...skipping 18 matching lines...) Expand all Loading... |
| 65 #include <grpc/support/string_util.h> | 64 #include <grpc/support/string_util.h> |
| 66 #include <grpc/support/subprocess.h> | 65 #include <grpc/support/subprocess.h> |
| 67 #include <grpc/support/sync.h> | 66 #include <grpc/support/sync.h> |
| 68 #include <grpc/support/sync_generic.h> | 67 #include <grpc/support/sync_generic.h> |
| 69 #include <grpc/support/thd.h> | 68 #include <grpc/support/thd.h> |
| 70 #include <grpc/support/time.h> | 69 #include <grpc/support/time.h> |
| 71 #include <grpc/support/tls.h> | 70 #include <grpc/support/tls.h> |
| 72 #include <grpc/support/useful.h> | 71 #include <grpc/support/useful.h> |
| 73 | 72 |
| 74 int main(int argc, char **argv) { return 0; } | 73 int main(int argc, char **argv) { return 0; } |
| OLD | NEW |