// Copyright 2024 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CONTENT_PUBLIC_BROWSER_PREVIEW_CANCEL_REASON_H_ #define CONTENT_PUBLIC_BROWSER_PREVIEW_CANCEL_REASON_H_ #include <string> #include "content/common/content_export.h" #include "third_party/abseil-cpp/absl/types/variant.h" namespace content { // TODO(b:316209095): Report UMA enum class PreviewFinalStatus { … }; class CONTENT_EXPORT PreviewCancelReason { … }; } // namespace content #endif // CONTENT_PUBLIC_BROWSER_PREVIEW_CANCEL_REASON_H_