OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef EXTENSIONS_RENDERER_API_BINDING_TYPES_H_ |
| 6 #define EXTENSIONS_RENDERER_API_BINDING_TYPES_H_ |
| 7 |
| 8 #include "base/callback.h" |
| 9 #include "v8/include/v8.h" |
| 10 |
| 11 namespace extensions { |
| 12 namespace binding { |
| 13 |
| 14 // A callback to execute the given v8::Function with the provided context and |
| 15 // arguments. |
| 16 using RunJSFunction = base::Callback<void(v8::Local<v8::Function>, |
| 17 v8::Local<v8::Context>, |
| 18 int argc, |
| 19 v8::Local<v8::Value>[])>; |
| 20 |
| 21 } // namespace binding |
| 22 } // namespace extensions |
| 23 |
| 24 #endif // EXTENSIONS_RENDERER_API_BINDING_TYPES_H_ |
OLD | NEW |