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