OLD | NEW |
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 // Keep this file in sync with the .proto files in this directory. | 5 // Keep this file in sync with the .proto files in this directory. |
6 | 6 |
7 #include "sync/protocol/proto_enum_conversions.h" | 7 #include "sync/protocol/proto_enum_conversions.h" |
8 | 8 |
9 #include "base/basictypes.h" | |
10 #include "base/logging.h" | 9 #include "base/logging.h" |
11 | 10 |
12 namespace syncer { | 11 namespace syncer { |
13 | 12 |
14 #define ASSERT_ENUM_BOUNDS(enum_parent, enum_type, enum_min, enum_max) \ | 13 #define ASSERT_ENUM_BOUNDS(enum_parent, enum_type, enum_min, enum_max) \ |
15 static_assert(enum_parent::enum_type##_MIN == enum_parent::enum_min, \ | 14 static_assert(enum_parent::enum_type##_MIN == enum_parent::enum_min, \ |
16 #enum_type "_MIN should be " #enum_min); \ | 15 #enum_type "_MIN should be " #enum_min); \ |
17 static_assert(enum_parent::enum_type##_MAX == enum_parent::enum_max, \ | 16 static_assert(enum_parent::enum_type##_MAX == enum_parent::enum_max, \ |
18 #enum_type "_MAX should be " #enum_max); | 17 #enum_type "_MAX should be " #enum_max); |
19 | 18 |
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
326 ENUM_CASE(sync_pb::TabNavigation, STATE_BLOCKED); | 325 ENUM_CASE(sync_pb::TabNavigation, STATE_BLOCKED); |
327 } | 326 } |
328 NOTREACHED(); | 327 NOTREACHED(); |
329 return ""; | 328 return ""; |
330 } | 329 } |
331 | 330 |
332 #undef ASSERT_ENUM_BOUNDS | 331 #undef ASSERT_ENUM_BOUNDS |
333 #undef ENUM_CASE | 332 #undef ENUM_CASE |
334 | 333 |
335 } // namespace syncer | 334 } // namespace syncer |
OLD | NEW |