blob: 8bebce84c0f66653a407f55f2bae12c6332a34f5 [file] [log] [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_