// 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 CHROME_BROWSER_WEB_APPLICATIONS_COMMANDS_COMMAND_RESULT_H_
#define CHROME_BROWSER_WEB_APPLICATIONS_COMMANDS_COMMAND_RESULT_H_

// TODO(https://crbug.com/384519679): Use this for recording per-command metrics.
enum class CommandResult {
  // The command completed without any unexpected errors.
  kSuccess,
  // An unexpected failure occurred, which might warrant a bug or an alert.
  kFailure,
};

// TODO(https://crbug.com/384519679): Put utilities for recording command metrics
// into this file.

#endif  // CHROME_BROWSER_WEB_APPLICATIONS_COMMANDS_COMMAND_RESULT_H_
