Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(159)

Side by Side Diff: components/image_fetcher/request_metadata.h

Issue 2677993002: Use IOSImageDataFetcherWrapper for favicon (Closed)
Patch Set: Actually adding the header Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef COMPONENTS_IMAGE_FETCHER_REQUEST_METADATA_H_ 5 #ifndef COMPONENTS_IMAGE_FETCHER_REQUEST_METADATA_H_
6 #define COMPONENTS_IMAGE_FETCHER_REQUEST_METADATA_H_ 6 #define COMPONENTS_IMAGE_FETCHER_REQUEST_METADATA_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 namespace image_fetcher { 10 namespace image_fetcher {
11 11
12 // Metadata for a URL request.
12 struct RequestMetadata { 13 struct RequestMetadata {
13 std::string mime_type; 14 std::string mime_type;
15 // HTTP response code.
16 int response_code;
14 }; 17 };
15 18
16 bool operator==(const RequestMetadata& lhs, const RequestMetadata& rhs); 19 bool operator==(const RequestMetadata& lhs, const RequestMetadata& rhs);
17 bool operator!=(const RequestMetadata& lhs, const RequestMetadata& rhs); 20 bool operator!=(const RequestMetadata& lhs, const RequestMetadata& rhs);
18 21
19 } // namespace image_fetcher 22 } // namespace image_fetcher
20 23
21 #endif // COMPONENTS_IMAGE_FETCHER_REQUEST_METADATA_H_ 24 #endif // COMPONENTS_IMAGE_FETCHER_REQUEST_METADATA_H_
OLDNEW
« no previous file with comments | « components/image_fetcher/ios/ios_image_data_fetcher_wrapper.h ('k') | components/image_fetcher/request_metadata.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698