Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: sync/protocol/app_list_specifics.proto

Issue 597873002: Remove page_ordinal from AppListSpecifics. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 23 matching lines...) Expand all
34 TYPE_URL = 4; 34 TYPE_URL = 4;
35 } 35 }
36 optional AppListItemType item_type = 2; 36 optional AppListItemType item_type = 2;
37 37
38 // Item name (FOLDER or URL). 38 // Item name (FOLDER or URL).
39 optional string item_name = 3; 39 optional string item_name = 3;
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 // Which page this item will appear on in the app list. 45 // Which page this item will appear on in the app list.
45 optional string page_ordinal = 5; 46 optional string OBSOLETE_page_ordinal = 5 [deprecated = true];
46 47
47 // Where on a page this item will appear. 48 // Where on a page this item will appear.
48 optional string item_ordinal = 6; 49 optional string item_ordinal = 6;
49 } 50 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/app_list/app_list_syncable_service.cc ('k') | sync/protocol/proto_value_conversions.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698