chromium/ui/base/ime/composition_text.h

// Copyright 2012 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_COMPOSITION_TEXT_H_
#define UI_BASE_IME_COMPOSITION_TEXT_H_

#include <stddef.h>

#include <string>

#include "base/component_export.h"
#include "ui/base/ime/ime_text_span.h"
#include "ui/gfx/range/range.h"

namespace ui {

// A struct represents the status of an ongoing composition text.
struct COMPONENT_EXPORT(UI_BASE_IME_TYPES) CompositionText {};

}  // namespace ui

#endif  // UI_BASE_IME_COMPOSITION_TEXT_H_