summaryrefslogtreecommitdiffstats
path: root/sync/util/time.h
blob: b8f32a4d0b091375b7a94c0870d728c85792cab6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// Time-related sync functions.

#ifndef SYNC_UTIL_TIME_H_
#define SYNC_UTIL_TIME_H_

#include <stdint.h>

#include <string>

#include "base/time/time.h"
#include "sync/base/sync_export.h"

namespace syncer {

// Converts a time object to the format used in sync protobufs (ms
// since the Unix epoch).
SYNC_EXPORT int64_t TimeToProtoTime(const base::Time& t);

// Converts a time field from sync protobufs to a time object.
SYNC_EXPORT base::Time ProtoTimeToTime(int64_t proto_t);

SYNC_EXPORT std::string GetTimeDebugString(const base::Time& t);

}  // namespace syncer

#endif  // SYNC_UTIL_TIME_H_