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

Side by Side Diff: chrome/common/pepper_permission_util.h

Issue 17029002: Change the permission check for Pepper socket API to support both the public and private APIs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 | Annotate | Revision Log
OLDNEW
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_
OLDNEW
« no previous file with comments | « chrome/browser/renderer_host/pepper/pepper_crx_file_system_message_filter.cc ('k') | chrome/common/pepper_permission_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698