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

Unified Diff: sync/protocol/sync_enums.proto

Issue 10985008: sync: Add DeviceInfo protobuf and supporting code (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update proto_value_conversions.cc Created 8 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 side-by-side diff with in-line comments
Download patch
Index: sync/protocol/sync_enums.proto
diff --git a/sync/protocol/sync_enums.proto b/sync/protocol/sync_enums.proto
index 0c43729d39b73ee0041f672cfef0c29c582f640f..40731f8182fa2f152a172972cae4d9e2b2850ae7 100644
--- a/sync/protocol/sync_enums.proto
+++ b/sync/protocol/sync_enums.proto
@@ -100,4 +100,14 @@ message SyncEnums {
// stop syncing.
UNKNOWN_ACTION = 5; // This is the default.
}
+
+ enum DeviceType {
+ TYPE_WIN = 1;
+ TYPE_MAC = 2;
+ TYPE_LINUX = 3;
+ TYPE_CROS = 4;
+ TYPE_OTHER = 5;
+ TYPE_PHONE = 6;
+ TYPE_TABLET = 7;
+ }
}

Powered by Google App Engine
This is Rietveld 408576698