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

Side by Side Diff: chrome/test/chromedriver/keycode_text_conversion.h

Issue 113403006: Update some uses of char16 to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 12 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
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 CHROME_TEST_CHROMEDRIVER_KEYCODE_TEXT_CONVERSION_H_ 5 #ifndef CHROME_TEST_CHROMEDRIVER_KEYCODE_TEXT_CONVERSION_H_
6 #define CHROME_TEST_CHROMEDRIVER_KEYCODE_TEXT_CONVERSION_H_ 6 #define CHROME_TEST_CHROMEDRIVER_KEYCODE_TEXT_CONVERSION_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/strings/string16.h" 10 #include "base/strings/string16.h"
11 #include "ui/events/keycodes/keyboard_codes.h" 11 #include "ui/events/keycodes/keyboard_codes.h"
12 12
13 // These functions only support conversion of characters in the BMP 13 // These functions only support conversion of characters in the BMP
14 // (Basic Multilingual Plane). 14 // (Basic Multilingual Plane).
15 15
16 // Coverts a key code and modifiers to the UTF8 text that would be produced 16 // Coverts a key code and modifiers to the UTF8 text that would be produced
17 // with the current keyboard layout, or "" if no character would be produced. 17 // with the current keyboard layout, or "" if no character would be produced.
18 // Returns "" if the produced text contains characters outside the BMP. If an 18 // Returns "" if the produced text contains characters outside the BMP. If an
19 // error occurs |error_msg| will be set to the error message and will return 19 // error occurs |error_msg| will be set to the error message and will return
20 // false. 20 // false.
21 bool ConvertKeyCodeToText(ui::KeyboardCode key_code, 21 bool ConvertKeyCodeToText(ui::KeyboardCode key_code,
22 int modifiers, 22 int modifiers,
23 std::string* text, 23 std::string* text,
24 std::string* error_msg); 24 std::string* error_msg);
25 25
26 // Converts a character to the key code and modifiers that would produce 26 // Converts a character to the key code and modifiers that would produce
27 // the character using the current keyboard layout. Returns true on success. 27 // the character using the current keyboard layout. Returns true on success.
28 // If an error occurs |error_msg| will be set to the error message, otherwise 28 // If an error occurs |error_msg| will be set to the error message, otherwise
29 // it will be set to the empty string. 29 // it will be set to the empty string.
30 bool ConvertCharToKeyCode(char16 key, 30 bool ConvertCharToKeyCode(base::char16 key,
31 ui::KeyboardCode* key_code, 31 ui::KeyboardCode* key_code,
32 int *necessary_modifiers, 32 int *necessary_modifiers,
33 std::string* error_msg); 33 std::string* error_msg);
34 34
35 #endif // CHROME_TEST_CHROMEDRIVER_KEYCODE_TEXT_CONVERSION_H_ 35 #endif // CHROME_TEST_CHROMEDRIVER_KEYCODE_TEXT_CONVERSION_H_
OLDNEW
« no previous file with comments | « chrome/test/chromedriver/key_converter_unittest.cc ('k') | chrome/test/chromedriver/keycode_text_conversion_mac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698