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

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

Issue 2761303002: Move common ImageFetcher component files to core/ (Closed)
Patch Set: Rebased. Created 3 years, 9 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
(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_
OLDNEW
« no previous file with comments | « components/image_fetcher/ios/ios_image_decoder_impl.h ('k') | components/image_fetcher/request_metadata.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698