Index: mojo/public/bindings/sample/sample_service.mojom |
diff --git a/mojo/public/bindings/sample/sample_service.mojom b/mojo/public/bindings/sample/sample_service.mojom |
index afc8c4907941be3e899068ec0332e704900e790b..e2ad62cbae9777c230c6f389e8afe77768570cac 100644 |
--- a/mojo/public/bindings/sample/sample_service.mojom |
+++ b/mojo/public/bindings/sample/sample_service.mojom |
@@ -5,8 +5,9 @@ |
module sample { |
enum BarType { |
- BAR_VERTICAL = 1, |
- BAR_HORIZONTAL = 2, |
+ BAR_VERTICAL = 1 << 0, |
+ BAR_HORIZONTAL = (1 << 1) + 0, |
+ BAR_BOTH = BAR_VERTICAL | BAR_HORIZONTAL, |
BAR_INVALID |
}; |