| Index: chrome/browser/extensions/api/declarative_webrequest/webrequest_condition.cc
|
| diff --git a/chrome/browser/extensions/api/declarative_webrequest/webrequest_condition.cc b/chrome/browser/extensions/api/declarative_webrequest/webrequest_condition.cc
|
| index 6432eb3dc8e1ae8d6bba4c5073c3b53a9fe2b8e9..0909d165dfddfc500b23787d6db803e64f7c0bc5 100644
|
| --- a/chrome/browser/extensions/api/declarative_webrequest/webrequest_condition.cc
|
| +++ b/chrome/browser/extensions/api/declarative_webrequest/webrequest_condition.cc
|
| @@ -114,9 +114,9 @@ bool WebRequestCondition::IsFulfilled(
|
|
|
| void WebRequestCondition::GetURLMatcherConditionSets(
|
| URLMatcherConditionSet::Vector* condition_sets) const {
|
| - if (url_matcher_conditions_)
|
| + if (url_matcher_conditions_.get())
|
| condition_sets->push_back(url_matcher_conditions_);
|
| - if (first_party_url_matcher_conditions_)
|
| + if (first_party_url_matcher_conditions_.get())
|
| condition_sets->push_back(first_party_url_matcher_conditions_);
|
| }
|
|
|
|
|