Chromium Code Reviews| Index: chrome/browser/sync/protocol/app_setting_specifics.proto |
| diff --git a/chrome/browser/sync/protocol/app_setting_specifics.proto b/chrome/browser/sync/protocol/app_setting_specifics.proto |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..0d9e25d685bd104e49b552c494bd86a41d4fb94e |
| --- /dev/null |
| +++ b/chrome/browser/sync/protocol/app_setting_specifics.proto |
| @@ -0,0 +1,29 @@ |
| +// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| +// |
| +// Sync protocol datatype extension for an app setting. |
| +// This is the same as for an extension setting, but uses a separate datatype |
|
akalin
2011/10/28 06:04:54
Don't forget to get this in server-side, too
not at google - send to devlin
2011/10/31 00:02:23
Which server?
I've updated the test one in net/,
akalin
2011/10/31 20:20:57
The actual server code (internal). Not urgent, bu
|
| +// in order to control syncability separately. |
| + |
| +// Update proto_value_conversions{.h,.cc,_unittest.cc} if you change |
| +// any fields in this file. |
| + |
| +syntax = "proto2"; |
| + |
| +option optimize_for = LITE_RUNTIME; |
| +option retain_unknown_fields = true; |
| + |
| +package sync_pb; |
| + |
| +import "sync.proto"; |
| +import "extension_setting_specifics.proto"; |
| + |
| +// Properties of app setting sync objects; just an extension setting. |
| +message AppSettingSpecifics { |
| + optional ExtensionSettingSpecifics extension_setting = 1; |
| +} |
| + |
| +extend EntitySpecifics { |
| + optional AppSettingSpecifics app_setting = 103656; |
| +} |