Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2162)

Side by Side Diff: extensions/renderer/api_binding_types.h

Issue 2552343006: [Extensions Binding] Allow for registering custom hooks (Closed)
Patch Set: . Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « extensions/renderer/api_binding_hooks.cc ('k') | extensions/renderer/api_binding_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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_
OLDNEW
« no previous file with comments | « extensions/renderer/api_binding_hooks.cc ('k') | extensions/renderer/api_binding_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698