blob: 84ddf04a6b6f13528753e654b1a68a0527c20353 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_RENDERER_EXTENSIONS_RUNTIME_CUSTOM_BINDINGS_H_
#define CHROME_RENDERER_EXTENSIONS_RUNTIME_CUSTOM_BINDINGS_H_
#include "base/compiler_specific.h"
#include "chrome/renderer/extensions/chrome_v8_extension.h"
#include "v8/include/v8.h"
class ExtensionDispatcher;
class ChromeV8Context;
namespace extensions {
// The native component of custom bindings for the chrome.runtime API.
class RuntimeCustomBindings : public ChromeV8Extension {
public:
RuntimeCustomBindings(Dispatcher* dispatcher, ChromeV8Context* context);
virtual ~RuntimeCustomBindings();
// Creates a new messaging channel to the given extension.
static v8::Handle<v8::Value> OpenChannelToExtension(
const v8::Arguments& args);
static v8::Handle<v8::Value> OpenChannelToNativeApp(
const v8::Arguments& args);
private:
v8::Handle<v8::Value> GetManifest(const v8::Arguments& args);
ChromeV8Context* context_;
};
} // extensions
#endif // CHROME_RENDERER_EXTENSIONS_RUNTIME_CUSTOM_BINDINGS_H_
|