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

Unified Diff: chrome/browser/sync/protocol/sync.proto

Issue 8595023: [Sync] Parse and save per-data type throttle data (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: For review. Created 9 years, 1 month 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: chrome/browser/sync/protocol/sync.proto
diff --git a/chrome/browser/sync/protocol/sync.proto b/chrome/browser/sync/protocol/sync.proto
index b4e182618e4c2458ad8a31532ace5ce085b9a24b..f6e9bbdfd4c34b81397a53e0e5cfc4f82b878e1f 100644
--- a/chrome/browser/sync/protocol/sync.proto
+++ b/chrome/browser/sync/protocol/sync.proto
@@ -420,7 +420,7 @@ message ClearUserDataResponse {
message ClientToServerMessage {
required string share = 1;
- optional int32 protocol_version = 2 [default = 29];
+ optional int32 protocol_version = 2 [default = 30];
enum Contents {
COMMIT = 1;
GET_UPDATES = 2;
@@ -650,6 +650,10 @@ message ClientToServerResponse {
UNKNOWN_ACTION = 5; // This is the default.
}
optional Action action = 4 [default = UNKNOWN_ACTION];
+
+ // Meaningful if the |error_type| is throttled. If this field is absent
+ // then the whole client(all datatypes) is throttled.
akalin 2011/11/21 20:04:26 space before (
lipalani1 2011/11/21 21:55:38 Not sure I understand? On 2011/11/21 20:04:26, aka
+ repeated int32 throttled_data_type_ids = 5;
akalin 2011/11/21 20:04:26 i think this should be named more generically, lik
lipalani1 2011/11/21 21:55:38 Renamed. Not sure I understand the rest of the com
}
optional Error error = 13;

Powered by Google App Engine
This is Rietveld 408576698