Index: ui/base/ime/composition.cc |
diff --git a/ui/base/ime/composition.cc b/ui/base/ime/composition.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..8541e179bf9a29e721f3d6ef869681f70ed73095 |
--- /dev/null |
+++ b/ui/base/ime/composition.cc |
@@ -0,0 +1,18 @@ |
+// Copyright (c) 2011 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/base/ime/composition.h" |
+ |
+namespace ui { |
+ |
Peng
2011/03/18 18:01:11
It is better to put those struct's functions in he
James Su
2011/03/18 18:11:24
According to chromium code style, we shouldn't inl
Peng
2011/03/18 18:50:11
But it still looks not much reasonable for me, to
James Su
2011/03/18 19:18:35
Just removed it. We actually don't need it.
|
+Composition::Composition() { |
+} |
+ |
+void Composition::Clear() { |
+ text.clear(); |
+ underlines.clear(); |
+ selection = Range(); |
+} |
+ |
+} // namespace ui |