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 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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 // third_party/WebKit/public/platform/WebReferrerPolicy.h. | 148 // third_party/WebKit/public/platform/WebReferrerPolicy.h. |
149 optional int32 correct_referrer_policy = 25 [default = 1]; | 149 optional int32 correct_referrer_policy = 25 [default = 1]; |
150 | 150 |
151 enum PasswordState { | 151 enum PasswordState { |
152 PASSWORD_STATE_UNKNOWN = 0; | 152 PASSWORD_STATE_UNKNOWN = 0; |
153 NO_PASSWORD_FIELD = 1; | 153 NO_PASSWORD_FIELD = 1; |
154 HAS_PASSWORD_FIELD = 2; | 154 HAS_PASSWORD_FIELD = 2; |
155 } | 155 } |
156 // Whether the Password Manager saw a password field on the page. | 156 // Whether the Password Manager saw a password field on the page. |
157 optional PasswordState password_state = 26; | 157 optional PasswordState password_state = 26; |
| 158 |
| 159 // Whether the navigation should contribute to Most Visited tiles in the NTP. |
| 160 optional bool navigation_ignore_for_ntp_tiles = 27; |
158 } | 161 } |
159 | 162 |
160 // Navigation information for a single redirection within a single navigation. | 163 // Navigation information for a single redirection within a single navigation. |
161 message NavigationRedirect { | 164 message NavigationRedirect { |
162 // A URL that redirected while navigating to the virtual_url. | 165 // A URL that redirected while navigating to the virtual_url. |
163 optional string url = 1; | 166 optional string url = 1; |
164 } | 167 } |
OLD | NEW |