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_SCHEMA_GENERATED_BINDINGS_H_ | 5 #ifndef CHROME_RENDERER_EXTENSIONS_SCHEMA_GENERATED_BINDINGS_H_ |
6 #define CHROME_RENDERER_EXTENSIONS_SCHEMA_GENERATED_BINDINGS_H_ | 6 #define CHROME_RENDERER_EXTENSIONS_SCHEMA_GENERATED_BINDINGS_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 class ExtensionDispatcher; | 11 class ExtensionDispatcher; |
12 class ChromeV8ContextSet; | 12 class ChromeV8ContextSet; |
| 13 class ChromeV8Extension; |
13 | 14 |
14 namespace v8 { | 15 namespace v8 { |
15 class Extension; | 16 class Extension; |
16 } | 17 } |
17 | 18 |
18 namespace extensions { | 19 namespace extensions { |
19 | 20 |
20 // Generates JavaScript bindings for the extension system from the JSON | 21 // Generates JavaScript bindings for the extension system from the JSON |
21 // declarations in chrome/common/extensions/api/. | 22 // declarations in chrome/common/extensions/api/. |
22 class SchemaGeneratedBindings { | 23 class SchemaGeneratedBindings { |
23 public: | 24 public: |
24 static v8::Extension* Get(ExtensionDispatcher* extension_dispatcher); | 25 static ChromeV8Extension* Get(ExtensionDispatcher* extension_dispatcher); |
25 | 26 |
26 // Handles a response to an API request. Sets |extension_id|. | 27 // Handles a response to an API request. Sets |extension_id|. |
27 static void HandleResponse(const ChromeV8ContextSet& contexts, | 28 static void HandleResponse(const ChromeV8ContextSet& contexts, |
28 int request_id, | 29 int request_id, |
29 bool success, | 30 bool success, |
30 const std::string& response, | 31 const std::string& response, |
31 const std::string& error, | 32 const std::string& error, |
32 std::string* extension_id); | 33 std::string* extension_id); |
33 | 34 |
34 static bool HasPendingRequests(const std::string& extension_id); | 35 static bool HasPendingRequests(const std::string& extension_id); |
35 }; | 36 }; |
36 | 37 |
37 } // namespace extensions | 38 } // namespace extensions |
38 | 39 |
39 #endif // CHROME_RENDERER_EXTENSIONS_SCHEMA_GENERATED_BINDINGS_H_ | 40 #endif // CHROME_RENDERER_EXTENSIONS_SCHEMA_GENERATED_BINDINGS_H_ |
OLD | NEW |