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

Unified Diff: components/sync/protocol/session_specifics.proto

Issue 2499023004: [Sync] Introduce SyncedSessionWindow type. (Closed)
Patch Set: Address comments Created 3 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: components/sync/protocol/session_specifics.proto
diff --git a/components/sync/protocol/session_specifics.proto b/components/sync/protocol/session_specifics.proto
index 0c8095d2233ef791c9627d4a028e3d5c3e8a4b8a..04df7d3176f4e6256d203deaeee7d5283d85cc6f 100644
--- a/components/sync/protocol/session_specifics.proto
+++ b/components/sync/protocol/session_specifics.proto
@@ -70,17 +70,16 @@ message SessionTab {
// Tabs are navigated, and the navigation data is here.
repeated TabNavigation navigation = 7;
- // Fields 8 through 11 are deprecated.
// The favicon for the current url the tab is displaying. Either empty
// or a valid PNG encoded favicon.
- optional bytes favicon = 8;
+ optional bytes favicon = 8 [deprecated = true];
// The type of favicon. For now only normal web favicons are supported.
enum FaviconType { TYPE_WEB_FAVICON = 1; }
- optional FaviconType favicon_type = 9;
+ optional FaviconType favicon_type = 9 [deprecated = true];
// The url of the actual favicon (as opposed to the page using the favicon).
- optional string favicon_source = 11;
+ optional string favicon_source = 11 [deprecated = true];
// Ids of the currently assigned variations which should be sent to sync.
- repeated uint64 variation_id = 12;
+ repeated uint64 variation_id = 12 [deprecated = true];
}
message TabNavigation {
« no previous file with comments | « components/sessions/core/session_types_unittest.cc ('k') | components/sync_sessions/revisit/sessions_page_revisit_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698