chromium/ui/base/ime/text_input_action.h

// Copyright 2019 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef UI_BASE_IME_TEXT_INPUT_ACTION_H_
#define UI_BASE_IME_TEXT_INPUT_ACTION_H_

namespace ui {

// This mode corresponds to enterkeyhint
// https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-enterkeyhint-attribute
//
// A Java counterpart will be generated for this enum.
// GENERATED_JAVA_ENUM_PACKAGE: org.chromium.ui.base.ime
enum class TextInputAction {};

}  // namespace ui

#endif  // UI_BASE_IME_TEXT_INPUT_ACTION_H_