| Index: components/url_matcher/url_matcher_factory.cc
|
| diff --git a/components/url_matcher/url_matcher_factory.cc b/components/url_matcher/url_matcher_factory.cc
|
| index ab1c365439970ec3ff34f27162ae3819ed6b25bb..f36e452afaf1ea52ff1b6f129fc3d130d1a79cb1 100644
|
| --- a/components/url_matcher/url_matcher_factory.cc
|
| +++ b/components/url_matcher/url_matcher_factory.cc
|
| @@ -114,7 +114,7 @@ URLMatcherFactory::CreateFromURLFilterDictionary(
|
| for (base::DictionaryValue::Iterator iter(*url_filter_dict);
|
| !iter.IsAtEnd(); iter.Advance()) {
|
| const std::string& condition_attribute_name = iter.key();
|
| - const Value& condition_attribute_value = iter.value();
|
| + const base::Value& condition_attribute_value = iter.value();
|
| if (IsURLMatcherConditionAttribute(condition_attribute_name)) {
|
| // Handle {host, path, ...}{Prefix, Suffix, Contains, Equals}.
|
| URLMatcherCondition url_matcher_condition =
|
| @@ -245,9 +245,9 @@ scoped_ptr<URLMatcherPortFilter> URLMatcherFactory::CreateURLMatcherPorts(
|
| return scoped_ptr<URLMatcherPortFilter>();
|
| }
|
|
|
| - for (ListValue::const_iterator i = value_list->begin();
|
| + for (base::ListValue::const_iterator i = value_list->begin();
|
| i != value_list->end(); ++i) {
|
| - Value* entry = *i;
|
| + base::Value* entry = *i;
|
| int port = 0;
|
| base::ListValue* range = NULL;
|
| if (entry->GetAsInteger(&port)) {
|
|
|