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

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

Issue 2338703003: [NTP] Fix article suggestion clicks contributing to Most Visited tiles (Closed)
Patch Set: Add test coverage to HistoryBackend. Created 4 years, 3 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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 }
OLDNEW
« no previous file with comments | « components/sessions/core/serialized_navigation_entry_unittest.cc ('k') | ui/base/page_transition_types.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698