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

Side by Side Diff: components/sync/protocol/session_specifics.proto

Issue 2776633003: Add taskid for navigation, created in session sync (Closed)
Patch Set: 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 unified diff | Download patch
OLDNEW
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 sessions. 5 // Sync protocol datatype extension for sessions.
6 6
7 // Update proto_value_conversions{.h,.cc,_unittest.cc} if you change 7 // Update proto_value_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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 // third_party/WebKit/public/platform/WebReferrerPolicy.h. 149 // third_party/WebKit/public/platform/WebReferrerPolicy.h.
150 optional int32 correct_referrer_policy = 25 [default = 1]; 150 optional int32 correct_referrer_policy = 25 [default = 1];
151 151
152 enum PasswordState { 152 enum PasswordState {
153 PASSWORD_STATE_UNKNOWN = 0; 153 PASSWORD_STATE_UNKNOWN = 0;
154 NO_PASSWORD_FIELD = 1; 154 NO_PASSWORD_FIELD = 1;
155 HAS_PASSWORD_FIELD = 2; 155 HAS_PASSWORD_FIELD = 2;
156 } 156 }
157 // Whether the Password Manager saw a password field on the page. 157 // Whether the Password Manager saw a password field on the page.
158 optional PasswordState password_state = 26; 158 optional PasswordState password_state = 26;
159
Patrick Noland 2017/03/24 20:51:57 Please add a comment, ideally explaining why it's
shenchao 2017/03/25 23:53:13 Done.
160 repeated int64 task_ids_on_path = 27;
159 } 161 }
160 162
161 // Navigation information for a single redirection within a single navigation. 163 // Navigation information for a single redirection within a single navigation.
162 message NavigationRedirect { 164 message NavigationRedirect {
163 // A URL that redirected while navigating to the virtual_url. 165 // A URL that redirected while navigating to the virtual_url.
164 optional string url = 1; 166 optional string url = 1;
165 } 167 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698