Index: chromeos/ime/ibus_text.cc |
diff --git a/chromeos/ime/ibus_text.cc b/chromeos/ime/ibus_text.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..4a5053f0badaba3492744befaf30eda4af5a0909 |
--- /dev/null |
+++ b/chromeos/ime/ibus_text.cc |
@@ -0,0 +1,22 @@ |
+// Copyright (c) 2012 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 "chromeos/ime/ibus_text.h" |
+ |
+namespace chromeos { |
+ |
+IBusText::IBusText() {} |
+ |
+IBusText::~IBusText() {} |
+ |
+void IBusText::CopyFrom(const IBusText& obj) { |
+ text_ = obj.text(); |
+ annotation_ = obj.annotation(); |
+ description_title_ = obj.description_title(); |
+ description_body_ = obj.description_body(); |
+ underline_attributes_ = obj.underline_attributes(); |
+ selection_attributes_ = obj.selection_attributes(); |
+} |
+ |
+} // namespace chromeos |