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 #include <stdio.h> | 5 #include <stdio.h> |
6 #include <string.h> | 6 #include <string.h> |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "dart/runtime/include/dart_api.h" | 11 #include "dart/runtime/include/dart_api.h" |
12 #include "mojo/public/c/system/buffer.h" | 12 #include "mojo/public/c/system/buffer.h" |
13 #include "mojo/public/c/system/data_pipe.h" | 13 #include "mojo/public/c/system/data_pipe.h" |
14 #include "mojo/public/c/system/functions.h" | |
15 #include "mojo/public/c/system/handle.h" | 14 #include "mojo/public/c/system/handle.h" |
16 #include "mojo/public/c/system/message_pipe.h" | 15 #include "mojo/public/c/system/message_pipe.h" |
17 #include "mojo/public/c/system/result.h" | 16 #include "mojo/public/c/system/result.h" |
18 #include "mojo/public/c/system/types.h" | 17 #include "mojo/public/c/system/time.h" |
19 #include "mojo/public/cpp/environment/logging.h" | 18 #include "mojo/public/cpp/environment/logging.h" |
20 #include "mojo/public/cpp/system/core.h" | 19 #include "mojo/public/cpp/system/core.h" |
21 #include "mojo/public/cpp/system/macros.h" | 20 #include "mojo/public/cpp/system/macros.h" |
22 #include "mojo/public/platform/dart/dart_handle_watcher.h" | 21 #include "mojo/public/platform/dart/dart_handle_watcher.h" |
23 | 22 |
24 namespace mojo { | 23 namespace mojo { |
25 namespace dart { | 24 namespace dart { |
26 | 25 |
27 #define REGISTER_FUNCTION(name, count) \ | 26 #define REGISTER_FUNCTION(name, count) \ |
28 { "" #name, name, count }, | 27 { "" #name, name, count }, |
(...skipping 816 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
845 reinterpret_cast<const void*>(&command), | 844 reinterpret_cast<const void*>(&command), |
846 sizeof(command), | 845 sizeof(command), |
847 nullptr, | 846 nullptr, |
848 0, | 847 0, |
849 0); | 848 0); |
850 Dart_SetIntegerReturnValue(arguments, static_cast<int64_t>(res)); | 849 Dart_SetIntegerReturnValue(arguments, static_cast<int64_t>(res)); |
851 } | 850 } |
852 | 851 |
853 } // namespace dart | 852 } // namespace dart |
854 } // namespace mojo | 853 } // namespace mojo |
OLD | NEW |