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

Side by Side Diff: net/reporting/reporting_report.cc

Issue 2249213002: [OBSOLETE] Reporting: Initial implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years 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 #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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698