Index: third_party/libaddressinput/chromium/cpp/src/country_rules_aggregator.cc |
diff --git a/third_party/libaddressinput/chromium/cpp/src/country_rules_aggregator.cc b/third_party/libaddressinput/chromium/cpp/src/country_rules_aggregator.cc |
index bb32cd353806b0f553f3a5ff19c802dcb498aecb..dbb913bfb868bcb1aebaaee724cee0be43f4ba85 100644 |
--- a/third_party/libaddressinput/chromium/cpp/src/country_rules_aggregator.cc |
+++ b/third_party/libaddressinput/chromium/cpp/src/country_rules_aggregator.cc |
@@ -73,7 +73,8 @@ void CountryRulesAggregator::OnDataReady(bool success, |
} |
scoped_ptr<Ruleset> ruleset = Build(key_, COUNTRY); |
- (*rules_ready_)(ruleset != NULL, country_code_, ruleset.Pass()); |
+ const bool parse_success = ruleset != NULL; |
+ (*rules_ready_)(parse_success, country_code_, ruleset.Pass()); |
Reset(); |
} |