OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 #include "ui/base/ime/composition.h" | |
6 | |
7 namespace ui { | |
8 | |
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.
| |
9 Composition::Composition() { | |
10 } | |
11 | |
12 void Composition::Clear() { | |
13 text.clear(); | |
14 underlines.clear(); | |
15 selection = Range(); | |
16 } | |
17 | |
18 } // namespace ui | |
OLD | NEW |