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

Side by Side Diff: ui/base/ime/composition.cc

Issue 6711008: Add common data types for input method support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 9 months 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698