| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 #ifndef EXTENSIONS_RENDERER_API_BINDING_TYPES_H_ | 5 #ifndef EXTENSIONS_RENDERER_API_BINDING_TYPES_H_ |
| 6 #define EXTENSIONS_RENDERER_API_BINDING_TYPES_H_ | 6 #define EXTENSIONS_RENDERER_API_BINDING_TYPES_H_ |
| 7 | 7 |
| 8 #include <memory> |
| 9 #include <vector> |
| 10 |
| 8 #include "base/callback.h" | 11 #include "base/callback.h" |
| 9 #include "v8/include/v8.h" | 12 #include "v8/include/v8.h" |
| 10 | 13 |
| 11 namespace extensions { | 14 namespace extensions { |
| 15 class ArgumentSpec; |
| 16 |
| 12 namespace binding { | 17 namespace binding { |
| 13 | 18 |
| 14 // A callback to execute the given v8::Function with the provided context and | 19 // A callback to execute the given v8::Function with the provided context and |
| 15 // arguments. | 20 // arguments. |
| 16 using RunJSFunction = base::Callback<void(v8::Local<v8::Function>, | 21 using RunJSFunction = base::Callback<void(v8::Local<v8::Function>, |
| 17 v8::Local<v8::Context>, | 22 v8::Local<v8::Context>, |
| 18 int argc, | 23 int argc, |
| 19 v8::Local<v8::Value>[])>; | 24 v8::Local<v8::Value>[])>; |
| 20 | 25 |
| 26 using APISignature = std::vector<std::unique_ptr<ArgumentSpec>>; |
| 27 |
| 21 } // namespace binding | 28 } // namespace binding |
| 22 } // namespace extensions | 29 } // namespace extensions |
| 23 | 30 |
| 24 #endif // EXTENSIONS_RENDERER_API_BINDING_TYPES_H_ | 31 #endif // EXTENSIONS_RENDERER_API_BINDING_TYPES_H_ |
| OLD | NEW |