| OLD | NEW |
| (Empty) |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef COMPONENTS_IMAGE_FETCHER_REQUEST_METADATA_H_ | |
| 6 #define COMPONENTS_IMAGE_FETCHER_REQUEST_METADATA_H_ | |
| 7 | |
| 8 #include <string> | |
| 9 | |
| 10 #include "net/url_request/url_fetcher.h" | |
| 11 | |
| 12 namespace image_fetcher { | |
| 13 | |
| 14 // Metadata for a URL request. | |
| 15 struct RequestMetadata { | |
| 16 // Impossible http response code. Used to signal that no http response code | |
| 17 // was received. | |
| 18 enum ResponseCode { | |
| 19 RESPONSE_CODE_INVALID = net::URLFetcher::RESPONSE_CODE_INVALID | |
| 20 }; | |
| 21 | |
| 22 RequestMetadata(); | |
| 23 | |
| 24 std::string mime_type; | |
| 25 int http_response_code; | |
| 26 bool from_http_cache; | |
| 27 }; | |
| 28 | |
| 29 bool operator==(const RequestMetadata& lhs, const RequestMetadata& rhs); | |
| 30 bool operator!=(const RequestMetadata& lhs, const RequestMetadata& rhs); | |
| 31 | |
| 32 } // namespace image_fetcher | |
| 33 | |
| 34 #endif // COMPONENTS_IMAGE_FETCHER_REQUEST_METADATA_H_ | |
| OLD | NEW |