blob: d80071356d077feb7c67920e66f5992cdcc3daf7 [file] [log] [blame]
// 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.
v8::Handle<v8::Value> OpenChannelToExtension(const v8::Arguments& args);
// Creates a new messaging channels for the specified native application.
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_