blob: 4e023a91b9f8b05c70b68096b0ec6a265f206779 [file] [log] [blame]
// Copyright 2021 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef HERMES_HERMES_COMMON_H_
#define HERMES_HERMES_COMMON_H_
#include <string>
#include <base/time/time.h>
#include <dbus/object_path.h>
namespace hermes {
constexpr auto kLpaRetryDelay = base::TimeDelta::FromSeconds(2);
std::string GetTrailingChars(const std::string& pii, int num_chars);
// Used to redact PII in logs
std::string GetObjectPathForLog(const dbus::ObjectPath& dbus_path);
} // namespace hermes
#endif // HERMES_HERMES_COMMON_H_