use new api names for SkGraphics
[chromium-blink-merge.git] / components / domain_reliability / beacon.h
blobc50db2b7fcc1884a59f00d0219a48d9e0ad8a717
1 // Copyright 2014 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.
5 #ifndef COMPONENTS_DOMAIN_RELIABILITY_BEACON_H_
6 #define COMPONENTS_DOMAIN_RELIABILITY_BEACON_H_
8 #include <string>
10 #include "base/time/time.h"
11 #include "components/domain_reliability/domain_reliability_export.h"
13 namespace base {
14 class Value;
15 } // namespace base
17 namespace domain_reliability {
19 // The per-request data that is uploaded to the Domain Reliability collector.
20 struct DOMAIN_RELIABILITY_EXPORT DomainReliabilityBeacon {
21 public:
22 DomainReliabilityBeacon();
23 ~DomainReliabilityBeacon();
25 // Converts the Beacon to JSON format for uploading. Calculates the age
26 // relative to an upload time of |upload_time|.
27 base::Value* ToValue(base::TimeTicks upload_time) const;
29 // The URL that the beacon is reporting on, if included.
30 std::string url;
31 // The domain that the beacon is reporting on, if included.
32 std::string domain;
33 // The resource name that the beacon is reporting on, if included.
34 std::string resource;
35 // Status string (e.g. "ok", "dns.nxdomain", "http.403").
36 std::string status;
37 // Net error code. Encoded as a string in the final JSON.
38 int chrome_error;
39 // IP address of the server the request went to.
40 std::string server_ip;
41 // Protocol used to make the request.
42 std::string protocol;
43 // HTTP response code returned by the server, or -1 if none was received.
44 int http_response_code;
45 // Elapsed time between starting and completing the request.
46 base::TimeDelta elapsed;
47 // Start time of the request. Encoded as the request age in the final JSON.
48 base::TimeTicks start_time;
50 // Okay to copy and assign.
53 } // namespace domain_reliability
55 #endif // COMPONENTS_DOMAIN_RELIABILITY_BEACON_H_