Chromium Code Reviews| Index: third_party/libaddressinput/chromium/chrome_metadata_source.cc |
| diff --git a/third_party/libaddressinput/chromium/chrome_metadata_source.cc b/third_party/libaddressinput/chromium/chrome_metadata_source.cc |
| index 51066d90cac63165da9df791e00c314adb892b3e..97ac9cb7efb362ad89417093646944e780c4f250 100644 |
| --- a/third_party/libaddressinput/chromium/chrome_metadata_source.cc |
| +++ b/third_party/libaddressinput/chromium/chrome_metadata_source.cc |
| @@ -88,7 +88,7 @@ ChromeMetadataSource::Request::Request(const std::string& key, |
| void ChromeMetadataSource::Download(const std::string& key, |
| const Callback& downloaded) { |
| GURL resource(validation_data_url_ + key); |
| - if (!resource.SchemeIsSecure()) { |
| + if (!resource.SchemeIsCryptographic()) { |
|
lgarron
2015/05/08 03:00:58
rouslan@: The pre-commit hook tells me I should do
please use gerrit instead
2015/05/08 14:30:46
This is a mechanical change, so you can ignore tha
lgarron
2015/05/08 18:46:52
Alright, good to know.
Thanks. :-)
|
| downloaded(false, key, NULL); |
| return; |
| } |