| Index: extensions/common/features/base_feature_provider.cc
|
| diff --git a/extensions/common/features/base_feature_provider.cc b/extensions/common/features/base_feature_provider.cc
|
| index 472e1f55122b89a44fb7aa0973e7c6982560aa13..9d24d84ad085bc7d7badd9f3a3b1ce920c69e16c 100644
|
| --- a/extensions/common/features/base_feature_provider.cc
|
| +++ b/extensions/common/features/base_feature_provider.cc
|
| @@ -62,7 +62,7 @@
|
| std::stack<std::pair<std::string, const base::DictionaryValue*> >
|
| parse_stack;
|
| while (!split.empty()) {
|
| - std::string parent_name = base::JoinString(split, ".");
|
| + std::string parent_name = JoinString(split, '.');
|
| split.pop_back();
|
| if (root.HasKey(parent_name)) {
|
| const base::DictionaryValue* parent = nullptr;
|
| @@ -176,7 +176,7 @@
|
| if (split.size() < 2)
|
| return nullptr;
|
| split.pop_back();
|
| - return GetFeature(base::JoinString(split, "."));
|
| + return GetFeature(JoinString(split, '.'));
|
| }
|
|
|
| // Children of a given API are named starting with parent.name()+".", which
|
|
|