This source file includes following definitions.
- caps_lock
- show_window_at_composition
#include "chrome/browser/chromeos/input_method/input_method_engine_interface.h"
namespace chromeos {
InputMethodEngineInterface::KeyboardEvent::KeyboardEvent()
: alt_key(false),
ctrl_key(false),
shift_key(false),
caps_lock(false) {
}
InputMethodEngineInterface::KeyboardEvent::~KeyboardEvent() {
}
InputMethodEngineInterface::MenuItem::MenuItem() {
}
InputMethodEngineInterface::MenuItem::~MenuItem() {
}
InputMethodEngineInterface::Candidate::Candidate() {
}
InputMethodEngineInterface::Candidate::~Candidate() {
}
namespace {
const int kDefaultPageSize = 9;
}
InputMethodEngineInterface::CandidateWindowProperty::CandidateWindowProperty()
: page_size(kDefaultPageSize),
is_cursor_visible(true),
is_vertical(false),
show_window_at_composition(false) {
}
InputMethodEngineInterface::CandidateWindowProperty::~CandidateWindowProperty()
{
}
InputMethodEngineInterface::Observer::~Observer() {
}
}