OLD | NEW |
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 #include "chrome/common/extensions/extension_set.h" | 5 #include "chrome/common/extensions/extension_set.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "chrome/common/url_constants.h" | 8 #include "chrome/common/url_constants.h" |
9 | 9 |
10 ExtensionSet::ExtensionSet() { | 10 ExtensionSet::ExtensionSet() { |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 | 72 |
73 ExtensionMap::const_iterator i = extensions_.begin(); | 73 ExtensionMap::const_iterator i = extensions_.begin(); |
74 for (; i != extensions_.end(); ++i) { | 74 for (; i != extensions_.end(); ++i) { |
75 if (i->second->location() == Extension::COMPONENT && | 75 if (i->second->location() == Extension::COMPONENT && |
76 i->second->web_extent().MatchesURL(url)) | 76 i->second->web_extent().MatchesURL(url)) |
77 return true; | 77 return true; |
78 } | 78 } |
79 | 79 |
80 return false; | 80 return false; |
81 } | 81 } |
| 82 |
| 83 bool ExtensionSet::SecurityOriginHasAPIPermission( |
| 84 const std::string& origin, ExtensionAPIPermission::ID permission) const { |
| 85 ExtensionMap::const_iterator i = extensions_.begin(); |
| 86 for (; i != extensions_.end(); ++i) { |
| 87 if (i->second->web_extent().MatchesSecurityOrigin(origin) && |
| 88 i->second->HasAPIPermission(permission)) |
| 89 return true; |
| 90 } |
| 91 return false; |
| 92 } |
OLD | NEW |