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

Side by Side Diff: ui/base/win/ime_input.h

Issue 16431009: Use a direct include of strings headers in ui/, part 2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 6 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
« no previous file with comments | « ui/base/win/hwnd_util.cc ('k') | ui/base/win/ime_input.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 UI_BASE_WIN_IME_INPUT_H_ 5 #ifndef UI_BASE_WIN_IME_INPUT_H_
6 #define UI_BASE_WIN_IME_INPUT_H_ 6 #define UI_BASE_WIN_IME_INPUT_H_
7 7
8 #include <windows.h> 8 #include <windows.h>
9 9
10 #include <string> 10 #include <string>
11 #include <vector> 11 #include <vector>
12 12
13 #include "base/basictypes.h" 13 #include "base/basictypes.h"
14 #include "base/i18n/rtl.h" 14 #include "base/i18n/rtl.h"
15 #include "base/string16.h" 15 #include "base/strings/string16.h"
16 #include "ui/base/ui_export.h"
16 #include "ui/gfx/rect.h" 17 #include "ui/gfx/rect.h"
17 #include "ui/base/ui_export.h"
18 18
19 namespace ui { 19 namespace ui {
20 20
21 struct CompositionText; 21 struct CompositionText;
22 22
23 // This header file defines a struct and a class used for encapsulating IMM32 23 // This header file defines a struct and a class used for encapsulating IMM32
24 // APIs, controls IMEs attached to a window, and enables the 'on-the-spot' 24 // APIs, controls IMEs attached to a window, and enables the 'on-the-spot'
25 // input without deep knowledge about the APIs, i.e. knowledge about the 25 // input without deep knowledge about the APIs, i.e. knowledge about the
26 // language-specific and IME-specific behaviors. 26 // language-specific and IME-specific behaviors.
27 // The following items enumerates the simplest steps for an (window) 27 // The following items enumerates the simplest steps for an (window)
(...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 310
311 // Indicates whether or not we want IME to render composition text. 311 // Indicates whether or not we want IME to render composition text.
312 bool use_composition_window_; 312 bool use_composition_window_;
313 313
314 DISALLOW_COPY_AND_ASSIGN(ImeInput); 314 DISALLOW_COPY_AND_ASSIGN(ImeInput);
315 }; 315 };
316 316
317 } // namespace ui 317 } // namespace ui
318 318
319 #endif // UI_BASE_WIN_IME_INPUT_H_ 319 #endif // UI_BASE_WIN_IME_INPUT_H_
OLDNEW
« no previous file with comments | « ui/base/win/hwnd_util.cc ('k') | ui/base/win/ime_input.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698