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

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

Issue 2749283002: components/image_fetcher: Add a from_http_cache flag to RequestMetadata (Closed)
Patch Set: test 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
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 #include "net/url_request/url_fetcher.h"
11
10 namespace image_fetcher { 12 namespace image_fetcher {
11 13
12 // Metadata for a URL request. 14 // Metadata for a URL request.
13 struct RequestMetadata { 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
14 std::string mime_type; 24 std::string mime_type;
15 // HTTP response code. 25 int http_response_code;
16 int response_code; 26 bool from_http_cache;
17 }; 27 };
18 28
19 bool operator==(const RequestMetadata& lhs, const RequestMetadata& rhs); 29 bool operator==(const RequestMetadata& lhs, const RequestMetadata& rhs);
20 bool operator!=(const RequestMetadata& lhs, const RequestMetadata& rhs); 30 bool operator!=(const RequestMetadata& lhs, const RequestMetadata& rhs);
21 31
22 } // namespace image_fetcher 32 } // namespace image_fetcher
23 33
24 #endif // COMPONENTS_IMAGE_FETCHER_REQUEST_METADATA_H_ 34 #endif // COMPONENTS_IMAGE_FETCHER_REQUEST_METADATA_H_
OLDNEW
« no previous file with comments | « components/image_fetcher/image_data_fetcher_unittest.cc ('k') | components/image_fetcher/request_metadata.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698