chromium/ui/base/ime/candidate_window.cc

// 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.

#include "ui/base/ime/candidate_window.h"

#include <stddef.h>

#include <string>
#include "base/check.h"
#include "base/strings/utf_string_conversions.h"
#include "base/values.h"

namespace ui {

namespace {
// The default entry number of a page in CandidateWindow.
const int kDefaultPageSize =;
}  // namespace

CandidateWindow::CandidateWindow()
    :{}

CandidateWindow::~CandidateWindow() {}

bool CandidateWindow::IsEqual(const CandidateWindow& cw) const {}

void CandidateWindow::CopyFrom(const CandidateWindow& cw) {}


void CandidateWindow::GetInfolistEntries(
    std::vector<ui::InfolistEntry>* infolist_entries,
    bool* has_highlighted) const {}

// When the default values are changed, please modify
// InputMethodEngineInterface::CandidateWindowProperty too.
CandidateWindow::CandidateWindowProperty::CandidateWindowProperty()
    :{}

CandidateWindow::CandidateWindowProperty::~CandidateWindowProperty() {}

CandidateWindow::Entry::Entry() {}

CandidateWindow::Entry::Entry(const Entry& other) = default;

CandidateWindow::Entry::~Entry() {}

}  // namespace ui