Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 the app list (aka app launcher). | 5 // Sync protocol datatype extension for the app list (aka app launcher). |
| 6 | 6 |
| 7 // Update proto_{value,enum}_conversions{.h,.cc,_unittest.cc} if you change | 7 // Update proto_{value,enum}_conversions{.h,.cc,_unittest.cc} if you change |
| 8 // any fields in this file. | 8 // any fields in this file. |
| 9 | 9 |
| 10 syntax = "proto2"; | 10 syntax = "proto2"; |
| (...skipping 29 matching lines...) Expand all Loading... | |
| 40 | 40 |
| 41 // Id of the parent (folder) item. | 41 // Id of the parent (folder) item. |
| 42 optional string parent_id = 4; | 42 optional string parent_id = 4; |
| 43 | 43 |
| 44 // Marked OBSOLETE because this is unused for the app list. | 44 // Marked OBSOLETE because this is unused for the app list. |
| 45 // Which page this item will appear on in the app list. | 45 // Which page this item will appear on in the app list. |
| 46 optional string OBSOLETE_page_ordinal = 5 [deprecated = true]; | 46 optional string OBSOLETE_page_ordinal = 5 [deprecated = true]; |
| 47 | 47 |
| 48 // Where on a page this item will appear. | 48 // Where on a page this item will appear. |
| 49 optional string item_ordinal = 6; | 49 optional string item_ordinal = 6; |
| 50 | |
| 51 // Where on a shelf this item will appear. | |
| 52 optional string item_pin_ordinal = 7; | |
| 53 | |
| 54 // If item is pinned by policy. | |
| 55 optional bool item_pin_by_policy = 8; | |
|
stevenjb
2016/06/10 18:00:41
item_pinned_by_policy, but I am not sure we need t
khmel
2016/06/10 22:08:11
Done
| |
| 50 } | 56 } |
| OLD | NEW |