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 namespace image_fetcher { |
| 11 |
| 12 struct RequestMetadata { |
| 13 std::string mime_type; |
| 14 }; |
| 15 |
| 16 bool operator==(const RequestMetadata& lhs, const RequestMetadata& rhs); |
| 17 bool operator!=(const RequestMetadata& lhs, const RequestMetadata& rhs); |
| 18 |
| 19 } // namespace image_fetcher |
| 20 |
| 21 #endif // COMPONENTS_IMAGE_FETCHER_REQUEST_METADATA_H_ |
OLD | NEW |