app_specifics.proto revision 731df977c0511bca2206b5f333555b1205ff1f43
1// Copyright (c) 2010 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// Sync protocol datatype extension for apps.
6
7syntax = "proto2";
8
9option optimize_for = LITE_RUNTIME;
10option retain_unknown_fields = true;
11
12package sync_pb;
13
14import "sync.proto";
15import "extension_specifics.proto";
16
17// Properties of app sync objects.
18//
19// For now, an app is just an extension.  We keep the two data types
20// separate for future-proofing purposes.
21message AppSpecifics {
22  // Extension data.
23  optional ExtensionSpecifics extension = 1;
24}
25
26extend EntitySpecifics {
27  optional AppSpecifics app = 48364;
28}
29