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

Side by Side Diff: blimp/common/proto/ime.proto

Issue 1779673003: Added network components for blimp text input feature (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698