Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(219)

Side by Side Diff: chrome/renderer/extensions/schema_generated_bindings.h

Issue 8869003: Move the "extension" namespace from extension_api.json into extension_api_extension.json. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: build.py again? Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 JSON
21 // in the extension_api.json file. 21 // declarations in chrome/common/extensions/api/.
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_
OLDNEW
« no previous file with comments | « chrome/renderer/extensions/extension_dispatcher.h ('k') | chrome/renderer/extensions/schema_generated_bindings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698