blob: 6fae958971be705fab15003e9a844cd9dd3c1ce8 [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_PUBLIC_COMMON_SMS_SMS_RECEIVER_DESTROYED_REASON_H_
#define THIRD_PARTY_BLINK_PUBLIC_COMMON_SMS_SMS_RECEIVER_DESTROYED_REASON_H_
namespace blink {
// This enum describes the reason for desruction of the SmsService.
enum class SmsReceiverDestroyedReason {
// Don't change the meaning of these values because they are being recorded
// in a metric.
kNavigateNewPage = 0,
kNavigateExistingPage = 1,
kNavigateSamePage = 2,
kMaxValue = kNavigateSamePage
};
} // namespace blink
#endif // THIRD_PARTY_BLINK_PUBLIC_COMMON_SMS_SMS_RECEIVER_DESTROYED_REASON_H_