| Index: ui/metro_viewer/ime_types.cc
|
| diff --git a/ui/metro_viewer/ime_types.cc b/ui/metro_viewer/ime_types.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..d8a05e95a2e6e7ae54031b0fcd6198d630f21ddd
|
| --- /dev/null
|
| +++ b/ui/metro_viewer/ime_types.cc
|
| @@ -0,0 +1,30 @@
|
| +// Copyright (c) 2013 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "ui/metro_viewer/ime_types.h"
|
| +
|
| +namespace metro_viewer {
|
| +
|
| +UnderlineInfo::UnderlineInfo()
|
| + : start_offset(0),
|
| + end_offset(0),
|
| + thick(false) {
|
| +}
|
| +
|
| +Composition::Composition()
|
| + : selection_start(0),
|
| + selection_end(0) {
|
| +}
|
| +
|
| +Composition::~Composition() {
|
| +}
|
| +
|
| +CharacterBounds::CharacterBounds()
|
| + : left(0),
|
| + top(0),
|
| + right(0),
|
| + bottom(0) {
|
| +}
|
| +
|
| +} // namespace metro_viewer
|
|
|