OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_COMMON_PEPPER_PERMISSION_UTIL_H_ | 5 #ifndef CHROME_COMMON_PEPPER_PERMISSION_UTIL_H_ |
6 #define CHROME_COMMON_PEPPER_PERMISSION_UTIL_H_ | 6 #define CHROME_COMMON_PEPPER_PERMISSION_UTIL_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 class ExtensionSet; | 11 class ExtensionSet; |
12 class GURL; | 12 class GURL; |
13 | 13 |
14 namespace chrome { | 14 namespace chrome { |
15 | 15 |
16 // Returns true if the extension (or an imported module if any) is whitelisted, | 16 // Returns true if the extension (or an imported module if any) is whitelisted. |
17 // or appears in command_line_switch. | |
18 bool IsExtensionOrSharedModuleWhitelisted( | 17 bool IsExtensionOrSharedModuleWhitelisted( |
19 const GURL& url, | 18 const GURL& url, |
20 const ExtensionSet* extension_set, | 19 const ExtensionSet* extension_set, |
21 const std::set<std::string>& whitelist, | 20 const std::set<std::string>& whitelist); |
22 const char* command_line_switch); | |
23 | 21 |
| 22 // Checks whether the host of |url| is allowed by |command_line_switch|. |
| 23 // |
| 24 // If the value of |command_line_switch| is: |
| 25 // (1) '*': returns true for any packaged or platform apps; |
| 26 // (2) a list of host names separated by ',': returns true if |host| is in the |
| 27 // list. (NOTE: In this case, |url| doesn't have to belong to an extension.) |
| 28 bool IsHostAllowedByCommandLine(const GURL& url, |
| 29 const ExtensionSet* extension_set, |
| 30 const char* command_line_switch); |
24 } // namespace chrome | 31 } // namespace chrome |
25 | 32 |
26 #endif // CHROME_COMMON_PEPPER_PERMISSION_UTIL_H_ | 33 #endif // CHROME_COMMON_PEPPER_PERMISSION_UTIL_H_ |
OLD | NEW |