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

Side by Side Diff: chrome/common/extensions/extension_set.cc

Issue 8312005: Ignore paths when matching patterns for extensions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 9 years, 2 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 (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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698