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

Side by Side Diff: content/common/resource_request_completion_status.h

Issue 1977313002: Define parameter structs of resource messages out of resource_messages.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 2016 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 CONTENT_COMMON_RESOURCE_REQUEST_COMPLETION_STATUS_H_
6 #define CONTENT_COMMON_RESOURCE_REQUEST_COMPLETION_STATUS_H_
7
8 #include <stdint.h>
9 #include <string>
10
11 #include "base/time/time.h"
12 #include "content/common/content_export.h"
13
14 namespace content {
15
16 struct CONTENT_EXPORT ResourceRequestCompletionStatus {
17 ResourceRequestCompletionStatus();
18 ResourceRequestCompletionStatus(
19 const ResourceRequestCompletionStatus& status);
20 ~ResourceRequestCompletionStatus();
21
22 // The error code.
23 int error_code = 0;
24
25 // Was ignored by the request handler.
26 bool was_ignored_by_handler = false;
27
28 // A copy of the data requested exists in the cache.
29 bool exists_in_cache = false;
30
31 // Serialized security info; see content/common/ssl_status_serialization.h.
32 std::string security_info;
33
34 // Time the request completed.
35 base::TimeTicks completion_time;
36
37 // Total amount of data received from the network.
38 int64_t encoded_data_length = 0;
39 };
40
41 } // namespace content
42
43 #endif // CONTENT_COMMON_RESOURCE_REQUEST_COMPLETION_STATUS_H_
OLDNEW
« no previous file with comments | « content/common/resource_request.cc ('k') | content/common/resource_request_completion_status.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698