blob: 0be2cb3844940a3bb0c1c81aed589cf9b4de1ea5 (
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
|
// Copyright (c) 2011 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_RENDERER_EXTENSION_BINDINGS_H_
#define CHROME_RENDERER_EXTENSIONS_RENDERER_EXTENSION_BINDINGS_H_
#pragma once
#include <string>
#include "chrome/renderer/extensions/chrome_v8_context_set.h"
class ExtensionDispatcher;
class RenderView;
namespace v8 {
class Extension;
}
// This class adds extension-related javascript bindings to a renderer. It is
// used by both web renderers and extension processes.
class RendererExtensionBindings {
public:
// Creates an instance of the extension.
static v8::Extension* Get(ExtensionDispatcher* dispatcher);
// Delivers a message sent using content script messaging to some of the
// contexts in |bindings_context_set|. If |restrict_to_render_view| is
// specified, only contexts in that render view will receive the message.
static void DeliverMessage(
const ChromeV8ContextSet::ContextSet& context_set,
int target_port_id,
const std::string& message,
RenderView* restrict_to_render_view);
};
#endif // CHROME_RENDERER_EXTENSIONS_RENDERER_EXTENSION_BINDINGS_H_
|