OLD | NEW |
---|---|
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 | 13 |
14 namespace v8 { | 14 namespace v8 { |
15 class Extension; | 15 class Extension; |
16 } | 16 } |
17 | 17 |
18 namespace extensions { | 18 namespace extensions { |
19 | 19 |
20 // Generates JavaScript bindings for the extension system from the declarations | 20 // Generates JavaScript bindings for the extension system from the declarations |
21 // in the extension_api.json file. | 21 // in api/. |
Aaron Boodman
2011/12/07 23:30:35
from the JSON declarations in chrome/common/extens
koz (OOO until 15th September)
2011/12/09 19:24:18
Done.
| |
22 class SchemaGeneratedBindings { | 22 class SchemaGeneratedBindings { |
23 public: | 23 public: |
24 static v8::Extension* Get(ExtensionDispatcher* extension_dispatcher); | 24 static v8::Extension* Get(ExtensionDispatcher* extension_dispatcher); |
25 | 25 |
26 // Handles a response to an API request. Sets |extension_id|. | 26 // Handles a response to an API request. Sets |extension_id|. |
27 static void HandleResponse(const ChromeV8ContextSet& contexts, | 27 static void HandleResponse(const ChromeV8ContextSet& contexts, |
28 int request_id, | 28 int request_id, |
29 bool success, | 29 bool success, |
30 const std::string& response, | 30 const std::string& response, |
31 const std::string& error, | 31 const std::string& error, |
32 std::string* extension_id); | 32 std::string* extension_id); |
33 | 33 |
34 static bool HasPendingRequests(const std::string& extension_id); | 34 static bool HasPendingRequests(const std::string& extension_id); |
35 }; | 35 }; |
36 | 36 |
37 } // namespace extensions | 37 } // namespace extensions |
38 | 38 |
39 #endif // CHROME_RENDERER_EXTENSIONS_SCHEMA_GENERATED_BINDINGS_H_ | 39 #endif // CHROME_RENDERER_EXTENSIONS_SCHEMA_GENERATED_BINDINGS_H_ |
OLD | NEW |