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

Side by Side Diff: components/cronet/android/metrics_util.h

Issue 2360813003: [Cronet] Pass metrics information from C++ BidirectionalStream to Java (Closed)
Patch Set: Rebased Created 4 years, 2 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 COMPONENTS_CRONET_ANDROID_CRONET_METRICS_UTIL_H_
6 #define COMPONENTS_CRONET_ANDROID_CRONET_METRICS_UTIL_H_
7
8 #include <stdint.h>
9
10 #include "base/time/time.h"
11
12 namespace cronet {
13
14 namespace metrics_util {
15
16 // Converts timing metrics stored as TimeTicks into the format expected by the
17 // Java layer: ms since Unix epoch, or -1 for null
18 int64_t ConvertTime(const base::TimeTicks& ticks,
19 const base::TimeTicks& start_ticks,
20 const base::Time& start_time);
21 } // namespace metrics_util
22
23 } // namespace cronet
24
25 #endif // COMPONENTS_CRONET_ANDROID_CRONET_METRICS_UTIL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698