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 void ExtensionSet::GetExtensionsPathAndDefaultLocale( | |
84 std::map<std::string, ExtensionPathAndDefaultLocale>* info) const { | |
85 info->clear(); | |
86 ExtensionMap::const_iterator i = extensions_.begin(); | |
87 for (; i != extensions_.end(); ++i) { | |
88 info->insert(std::make_pair(i->first, ExtensionPathAndDefaultLocale( | |
89 i->second->path(), i->second->default_locale()))); | |
Nebojša Ćirić
2011/08/19 21:19:15
I don't like the way it's wrapped - it's hard to t
adriansc
2011/08/19 21:48:08
I changed the nested instantiations into separate
| |
90 } | |
91 } | |
OLD | NEW |