diff options
author | yfriedman@chromium.org <yfriedman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-14 22:10:48 +0000 |
---|---|---|
committer | yfriedman@chromium.org <yfriedman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-14 22:10:48 +0000 |
commit | 1256c5d431ac15d9dc94bab2d42eac36212f0007 (patch) | |
tree | 7c299112cd6c9b2178858a17fb121b639ab485b2 /sync | |
parent | d80c3146f251a0ebb49963a0567438eecb807339 (diff) | |
download | chromium_src-1256c5d431ac15d9dc94bab2d42eac36212f0007.zip chromium_src-1256c5d431ac15d9dc94bab2d42eac36212f0007.tar.gz chromium_src-1256c5d431ac15d9dc94bab2d42eac36212f0007.tar.bz2 |
Add Phone/Tablet device types for syncing session from Android.
This is most of the scaffolding. The logic to choose between
Tablet/Phone requires Java code which can't be upstreamed yet due to
other dependencies.
BUG=
TEST=
Review URL: http://codereview.chromium.org/9664008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@126762 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'sync')
-rw-r--r-- | sync/protocol/session_specifics.proto | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sync/protocol/session_specifics.proto b/sync/protocol/session_specifics.proto index 9b59dd0..07323b1 100644 --- a/sync/protocol/session_specifics.proto +++ b/sync/protocol/session_specifics.proto @@ -33,6 +33,8 @@ message SessionHeader { TYPE_LINUX = 3; TYPE_CROS = 4; TYPE_OTHER = 5; + TYPE_PHONE = 6; + TYPE_TABLET = 7; } optional DeviceType device_type = 4; } |