Chromium Code Reviews| Index: chrome/browser/captive_portal/captive_portal_detector.h |
| diff --git a/chrome/browser/captive_portal/captive_portal_detector.h b/chrome/browser/captive_portal/captive_portal_detector.h |
| index 162ae6e150b55197f70ab5477425518c8163d676..da8b1a9aff744ff4b9841aad22776f223272cd22 100644 |
| --- a/chrome/browser/captive_portal/captive_portal_detector.h |
| +++ b/chrome/browser/captive_portal/captive_portal_detector.h |
| @@ -38,12 +38,14 @@ class CaptivePortalDetector : public net::URLFetcherDelegate, |
| struct Results { |
| Results() |
| : result(RESULT_NO_RESPONSE), |
| - response_code(net::URLFetcher::RESPONSE_CODE_INVALID) { |
| + response_code(net::URLFetcher::RESPONSE_CODE_INVALID), |
| + is_response_https(false) { |
| } |
| Result result; |
| int response_code; |
| base::TimeDelta retry_after_delta; |
| + bool is_response_https; |
|
mmenke
2014/03/26 14:46:08
This should be was_redirected_to_https, since the
meacer
2014/03/26 17:04:57
Done.
|
| }; |
| typedef base::Callback<void(const Results& results)> DetectionCallback; |