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

Side by Side Diff: chrome/browser/extensions/extension_permissions_api_helpers.h

Issue 9114036: Code generation for extensions api (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: a fistful of rework Created 8 years, 11 months 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
OLDNEW
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_BROWSER_EXTENSIONS_EXTENSION_PERMISSIONS_API_HELPERS_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_PERMISSIONS_API_HELPERS_H_
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_PERMISSIONS_API_HELPERS_H_ 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_PERMISSIONS_API_HELPERS_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
11 #include "base/memory/ref_counted.h"
12
13 namespace base { 11 namespace base {
14 class DictionaryValue; 12 class DictionaryValue;
15 } 13 }
16 class ExtensionPermissionSet; 14 class ExtensionPermissionSet;
17 15
18 namespace extensions { 16 namespace extensions {
17 namespace permissions_api {
Aaron Boodman 2012/01/19 23:31:13 Maybe you should reserve api::<name> for generated
calamity 2012/01/23 05:14:45 Done.
19 18
20 namespace permissions_api { 19 struct Permissions;
21 20
22 // Converts the permission |set| to a dictionary value. 21 // Converts the permission |set| to a dictionary value.
23 base::DictionaryValue* PackPermissionsToValue( 22 base::DictionaryValue* PackPermissionsToValue(
24 const ExtensionPermissionSet* set); 23 const ExtensionPermissionSet* set);
25 24
26 // Converts the |value| to a permission set. 25 // Converts the |permissions| to a new permission set. Returns NULL if the
Yoyo Zhou 2012/01/19 02:19:40 What do you mean by "new" permission set?
calamity 2012/01/20 01:10:25 In the sense that the function creates the Extensi
27 bool UnpackPermissionsFromValue(base::DictionaryValue* value, 26 // permissions cannot be converted to a permission set, in which case |error|
28 scoped_refptr<ExtensionPermissionSet>* ptr, 27 // will be set.
29 bool* bad_message, 28 ExtensionPermissionSet* UnpackPermissionSet(
30 std::string* error); 29 const Permissions& permissions, std::string* error);
31 30
32 } // namespace permissions_api 31 } // namespace permissions_api
33
34 } // namespace extensions 32 } // namespace extensions
35 33
36 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_PERMISSIONS_API_HELPERS_H__ 34 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_PERMISSIONS_API_HELPERS_H__
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698