OLD | NEW |
---|---|
(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 #include "net/reporting/reporting_report.h" | |
6 | |
7 #include "base/strings/string_number_conversions.h" | |
8 | |
9 namespace net { | |
10 | |
11 ReportingReport::ReportingReport() {} | |
Ryan Sleevi
2017/01/03 21:28:13
= default;
Julia Tuttle
2017/01/25 20:27:45
Done.
| |
12 ReportingReport::~ReportingReport() {} | |
13 | |
14 std::string ReportingReport::ToString() const { | |
15 base::TimeDelta age = base::TimeTicks::Now() - timestamp; | |
16 return "(type=" + type + ", group=" + group + ", origin=" + origin.spec() + | |
17 ", url=" + url.spec() + ", age=" + | |
18 base::Int64ToString(age.InSeconds()) + "s" + ", attempts=" + | |
19 base::IntToString(attempts) + ")"; | |
20 } | |
21 | |
22 } // namespace net | |
OLD | NEW |