OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CHROME_RENDERER_EXTENSIONS_RUNTIME_CUSTOM_BINDINGS_H_ | 5 #ifndef CHROME_RENDERER_EXTENSIONS_RUNTIME_CUSTOM_BINDINGS_H_ |
6 #define CHROME_RENDERER_EXTENSIONS_RUNTIME_CUSTOM_BINDINGS_H_ | 6 #define CHROME_RENDERER_EXTENSIONS_RUNTIME_CUSTOM_BINDINGS_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "chrome/renderer/extensions/chrome_v8_extension.h" | 9 #include "chrome/renderer/extensions/chrome_v8_extension.h" |
10 #include "v8/include/v8.h" | 10 #include "v8/include/v8.h" |
11 | 11 |
12 class ExtensionDispatcher; | 12 class ExtensionDispatcher; |
13 class ChromeV8Context; | 13 class ChromeV8Context; |
14 | 14 |
15 namespace extensions { | 15 namespace extensions { |
16 | 16 |
17 // The native component of custom bindings for the chrome.runtime API. | 17 // The native component of custom bindings for the chrome.runtime API. |
18 class RuntimeCustomBindings : public ChromeV8Extension { | 18 class RuntimeCustomBindings : public ChromeV8Extension { |
19 public: | 19 public: |
20 RuntimeCustomBindings(Dispatcher* dispatcher, | 20 RuntimeCustomBindings(Dispatcher* dispatcher, ChromeV8Context* context); |
21 ChromeV8Context* context); | |
22 | 21 |
23 virtual ~RuntimeCustomBindings(); | 22 virtual ~RuntimeCustomBindings(); |
24 | 23 |
25 // Creates a new messaging channel to the given extension. | 24 // Creates a new messaging channel to the given extension. |
26 static v8::Handle<v8::Value> OpenChannelToExtension( | 25 v8::Handle<v8::Value> OpenChannelToExtension(const v8::Arguments& args); |
27 const v8::Arguments& args); | |
28 | 26 |
29 // Creates a new messaging channels for the specified native application. | 27 // Creates a new messaging channels for the specified native application. |
30 v8::Handle<v8::Value> OpenChannelToNativeApp( | 28 v8::Handle<v8::Value> OpenChannelToNativeApp(const v8::Arguments& args); |
31 const v8::Arguments& args); | |
32 | 29 |
33 private: | 30 private: |
34 v8::Handle<v8::Value> GetManifest(const v8::Arguments& args); | 31 v8::Handle<v8::Value> GetManifest(const v8::Arguments& args); |
35 | 32 |
36 ChromeV8Context* context_; | 33 ChromeV8Context* context_; |
37 }; | 34 }; |
38 | 35 |
39 } // extensions | 36 } // extensions |
40 | 37 |
41 #endif // CHROME_RENDERER_EXTENSIONS_RUNTIME_CUSTOM_BINDINGS_H_ | 38 #endif // CHROME_RENDERER_EXTENSIONS_RUNTIME_CUSTOM_BINDINGS_H_ |
OLD | NEW |