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

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

Issue 2469593002: [Extensions Bindings] Add Events support (Closed)
Patch Set: asantest Created 4 years, 1 month 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.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
(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_
OLDNEW
« no previous file with comments | « extensions/renderer/api_binding.cc ('k') | extensions/renderer/api_binding_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698