1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24

ash / quick_insert / model / quick_insert_action_type.h [blame]

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

#include "ash/ash_export.h"

namespace ash {

enum class QuickInsertActionType {
  // Performs the action represented by the result.
  kDo,
  // Inserts the result into the focused input field.
  kInsert,
  // Opens the result in some window.
  kOpen,
  // Requests the result to be created.
  kCreate,
};
}

#endif  // ASH_QUICK_INSERT_MODEL_QUICK_INSERT_ACTION_TYPE_H_