blob: eb86fe7d1409879057945a519db9b53f9e8a478f [file] [log] [blame]
// Copyright 2019 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.
#ifndef THIRD_PARTY_BLINK_RENDERER_MODULES_PUSH_MESSAGING_PUSH_MESSAGING_UTILS_H_
#define THIRD_PARTY_BLINK_RENDERER_MODULES_PUSH_MESSAGING_PUSH_MESSAGING_UTILS_H_
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
namespace blink {
namespace mojom {
enum class PushErrorType;
enum class PushRegistrationStatus;
} // namespace mojom
WTF::String PushRegistrationStatusToString(
mojom::PushRegistrationStatus status);
mojom::PushErrorType PushRegistrationStatusToPushErrorType(
mojom::PushRegistrationStatus status);
} // namespace blink
#endif // THIRD_PARTY_BLINK_RENDERER_MODULES_PUSH_MESSAGING_PUSH_MESSAGING_UTILS_H_