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

Side by Side Diff: views/ime/input_method_ibus.h

Issue 8509034: Move views/ime/text_input_client.h to ui/base/ime/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: review Created 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef VIEWS_IME_INPUT_METHOD_IBUS_H_ 5 #ifndef VIEWS_IME_INPUT_METHOD_IBUS_H_
6 #define VIEWS_IME_INPUT_METHOD_IBUS_H_ 6 #define VIEWS_IME_INPUT_METHOD_IBUS_H_
7 #pragma once 7 #pragma once
8 8
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
11 11
12 #include "base/basictypes.h" 12 #include "base/basictypes.h"
13 #include "base/compiler_specific.h" 13 #include "base/compiler_specific.h"
14 #include "base/memory/scoped_ptr.h" 14 #include "base/memory/scoped_ptr.h"
15 #include "ui/base/glib/glib_integers.h" 15 #include "ui/base/glib/glib_integers.h"
16 #include "ui/base/glib/glib_signal.h" 16 #include "ui/base/glib/glib_signal.h"
17 #include "views/events/event.h" 17 #include "views/events/event.h"
18 #include "views/ime/character_composer.h" 18 #include "views/ime/character_composer.h"
19 #include "views/ime/input_method_base.h" 19 #include "views/ime/input_method_base.h"
20 #include "views/view.h" 20 #include "views/view.h"
21 #include "ui/base/ime/composition_text.h"
sky 2011/11/10 16:04:51 sort
Yusuke Sato 2011/11/11 02:18:25 Done.
22 #include "ui/base/ime/text_input_client.h"
21 23
22 // Forward declarations, so that we don't need to include ibus.h in this file. 24 // Forward declarations, so that we don't need to include ibus.h in this file.
23 typedef struct _GAsyncResult GAsyncResult; 25 typedef struct _GAsyncResult GAsyncResult;
24 typedef struct _IBusBus IBusBus; 26 typedef struct _IBusBus IBusBus;
25 typedef struct _IBusInputContext IBusInputContext; 27 typedef struct _IBusInputContext IBusInputContext;
26 typedef struct _IBusText IBusText; 28 typedef struct _IBusText IBusText;
27 29
28 namespace views { 30 namespace views {
29 31
30 // An InputMethod implementation based on IBus. 32 // An InputMethod implementation based on IBus.
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 // An object to compose a character from a sequence of key presses 202 // An object to compose a character from a sequence of key presses
201 // including dead key etc. 203 // including dead key etc.
202 CharacterComposer character_composer_; 204 CharacterComposer character_composer_;
203 205
204 DISALLOW_COPY_AND_ASSIGN(InputMethodIBus); 206 DISALLOW_COPY_AND_ASSIGN(InputMethodIBus);
205 }; 207 };
206 208
207 } // namespace views 209 } // namespace views
208 210
209 #endif // VIEWS_IME_INPUT_METHOD_IBUS_H_ 211 #endif // VIEWS_IME_INPUT_METHOD_IBUS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698