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

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

Issue 7811001: Break TYPE_PC into TYPE_WIN, TYPE_MAC, TYPE_LINUX. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Add TYPE_OTHER Created 9 years, 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/sync/protocol/proto_enum_conversions.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/sync/protocol/session_specifics.proto
diff --git a/chrome/browser/sync/protocol/session_specifics.proto b/chrome/browser/sync/protocol/session_specifics.proto
index 001b0516ed418b547e6244d9dfaf2c2e16fcfc54..a4a94b3dba027c1ef27cb2c188b18ee6af685845 100644
--- a/chrome/browser/sync/protocol/session_specifics.proto
+++ b/chrome/browser/sync/protocol/session_specifics.proto
@@ -30,8 +30,11 @@ message SessionHeader {
optional string client_name = 3;
// The type of device.
enum DeviceType {
- TYPE_PC = 1;
- TYPE_CROS = 2;
+ TYPE_WIN = 1;
+ TYPE_MAC = 2;
+ TYPE_LINUX = 3;
+ TYPE_CROS = 4;
+ TYPE_OTHER = 5;
ncarter (slow) 2011/08/30 21:52:30 Why do the dangerous renumbering?
Yaron 2011/08/30 21:58:46 This field was just added and has never been used
ncarter (slow) 2011/08/30 21:59:49 OK.
}
optional DeviceType device_type = 4;
}
« no previous file with comments | « chrome/browser/sync/protocol/proto_enum_conversions.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698