Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Unified Diff: ui/metro_viewer/ime_types.cc

Issue 74783010: [Ash] Introduces new IPC messages to support IME on Win-Ash (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add ime_types.cc to avoid complex ctor/dtor from being inlined Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/metro_viewer/ime_types.h ('k') | ui/metro_viewer/metro_viewer.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « ui/metro_viewer/ime_types.h ('k') | ui/metro_viewer/metro_viewer.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698