1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34

ash / quick_insert / quick_insert_category.h [blame]

// Copyright 2023 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_QUICK_INSERT_CATEGORY_H_
#define ASH_QUICK_INSERT_QUICK_INSERT_CATEGORY_H_

#include "ash/ash_export.h"

namespace ash {

// A category specifies a type of data that can be searched for.
enum class ASH_EXPORT QuickInsertCategory {
  // Editor categories:
  kEditorWrite,
  kEditorRewrite,
  kLobsterWithSelectedText,
  kLobsterWithNoSelectedText,
  // General categories:
  kLinks,
  kEmojisGifs,
  kEmojis,
  kGifs,
  kClipboard,
  kDriveFiles,
  kLocalFiles,
  // Calculation categories:
  kDatesTimes,
  kUnitsMaths,
};

}  // namespace ash

#endif  // ASH_QUICK_INSERT_QUICK_INSERT_CATEGORY_H_