// Copyright 2014 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_CANDIDATE_WINDOW_H_ #define UI_BASE_IME_CANDIDATE_WINDOW_H_ #include <stdint.h> #include <memory> #include <string> #include <vector> #include "base/component_export.h" #include "ui/base/ime/infolist_entry.h" namespace ui { // CandidateWindow represents the structure of candidates generated from IME. class COMPONENT_EXPORT(UI_BASE_IME_TYPES) CandidateWindow { … }; } // namespace ui #endif // UI_BASE_IME_CANDIDATE_WINDOW_H_