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

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

Issue 22837005: Add HTTP status code to navigation data structures (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix bug Created 7 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
« no previous file with comments | « sync/protocol/proto_value_conversions.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 // The favicon url associated with this page. 125 // The favicon url associated with this page.
126 optional string favicon_url = 17; 126 optional string favicon_url = 17;
127 enum BlockedState { 127 enum BlockedState {
128 STATE_ALLOWED = 1; 128 STATE_ALLOWED = 1;
129 STATE_BLOCKED = 2; 129 STATE_BLOCKED = 2;
130 } 130 }
131 // Whether access to the URL was allowed or blocked. 131 // Whether access to the URL was allowed or blocked.
132 optional BlockedState blocked_state = 18 [default=STATE_ALLOWED]; 132 optional BlockedState blocked_state = 18 [default=STATE_ALLOWED];
133 // A list of category identifiers for the URL. 133 // A list of category identifiers for the URL.
134 repeated string content_pack_categories = 19; 134 repeated string content_pack_categories = 19;
135 // The status code from the last navigation.
136 optional int32 http_status_code = 20;
135 } 137 }
OLDNEW
« no previous file with comments | « sync/protocol/proto_value_conversions.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698