Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2016 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 // Message definitions for text input messages. | |
| 6 | |
| 7 syntax = "proto2"; | |
| 8 | |
| 9 option optimize_for = LITE_RUNTIME; | |
| 10 | |
| 11 package blimp; | |
| 12 | |
| 13 message ImeMessage { | |
| 14 enum Type { | |
| 15 UNKNOWN = 0; | |
| 16 | |
| 17 // Server => Client types. | |
| 18 SHOW_IME = 1; | |
| 19 HIDE_IME = 2; | |
| 20 SHOW_TEXT = 3; | |
|
nyquist
2016/03/10 00:57:13
SHOW_TEXT seems to be used to send text from the c
shaktisahu
2016/03/15 23:44:13
Done.
| |
| 21 | |
| 22 // Client => Server types. | |
| 23 } | |
| 24 | |
| 25 optional Type type = 1; | |
| 26 optional int32 text_input_type = 2; | |
|
David Trainor- moved to gerrit
2016/03/14 17:59:42
This probably shouldn't be an int. We should roll
shaktisahu
2016/03/15 23:44:13
Done.
| |
| 27 optional string ime_text = 3; | |
| 28 } | |
| OLD | NEW |