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

Side by Side Diff: ui/keyboard/webui/keyboard.mojom

Issue 502853002: Mojom: Blanket change to mark all pointer/handle fields as nullable. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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
« no previous file with comments | « mojo/spy/public/spy.mojom ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 [Client=KeyboardAPI] 1 [Client=KeyboardAPI]
2 interface KeyboardUIHandlerMojo { 2 interface KeyboardUIHandlerMojo {
3 SendKeyEvent(string event_type, 3 SendKeyEvent(string? event_type,
4 int32 char_value, 4 int32 char_value,
5 int32 key_code, 5 int32 key_code,
6 string key_name, 6 string? key_name,
7 int32 modifiers); 7 int32 modifiers);
8 8
9 HideKeyboard(); 9 HideKeyboard();
10 }; 10 };
11 11
12 interface KeyboardAPI { 12 interface KeyboardAPI {
13 OnTextInputTypeChanged(string input_type); 13 OnTextInputTypeChanged(string? input_type);
14 }; 14 };
OLDNEW
« no previous file with comments | « mojo/spy/public/spy.mojom ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698