OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 // | 4 // |
5 // Sync protocol datatype extension for synced notifications. | 5 // Sync protocol datatype extension for synced notifications. |
6 // DO NOT USE: This datatype is deprecated. | 6 // DO NOT USE: This datatype is deprecated. |
7 | 7 |
8 syntax = "proto2"; | 8 syntax = "proto2"; |
9 | 9 |
10 option optimize_for = LITE_RUNTIME; | 10 option optimize_for = LITE_RUNTIME; |
11 option retain_unknown_fields = true; | 11 option retain_unknown_fields = true; |
12 | 12 |
13 package sync_pb; | 13 package sync_pb; |
14 | 14 |
15 // This message is kept around for backwards compatibility sake. | 15 // This message is kept around for backwards compatibility sake. |
16 message SyncedNotificationSpecifics { | 16 message SyncedNotificationSpecifics {} |
17 } | |
OLD | NEW |