#ifndef UI_BASE_IME_GRAMMAR_FRAGMENT_H_
#define UI_BASE_IME_GRAMMAR_FRAGMENT_H_
#include <string>
#include "base/component_export.h"
#include "ui/gfx/range/range.h"
namespace ui {
struct COMPONENT_EXPORT(UI_BASE_IME_TYPES) GrammarFragment {
GrammarFragment(const gfx::Range& range, const std::string& suggestion);
GrammarFragment(const GrammarFragment& other);
~GrammarFragment();
friend bool operator==(const GrammarFragment&,
const GrammarFragment&) = default;
gfx::Range range;
std::string suggestion;
};
}
#endif