| 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 #include "cc/base/hash_pair.h" | 5 #include "base/containers/hash_tables.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "testing/gtest/include/gtest/gtest.h" | 8 #include "testing/gtest/include/gtest/gtest.h" |
| 9 | 9 |
| 10 namespace { | 10 namespace { |
| 11 | 11 |
| 12 class HashPairTest : public testing::Test { | 12 class HashPairTest : public testing::Test { |
| 13 }; | 13 }; |
| 14 | 14 |
| 15 #define INSERT_PAIR_TEST(Type, value1, value2) \ | 15 #define INSERT_PAIR_TEST(Type, value1, value2) \ |
| (...skipping 28 matching lines...) Expand all Loading... |
| 44 typedef std::pair<int64, int32> Int64Int32Pair; | 44 typedef std::pair<int64, int32> Int64Int32Pair; |
| 45 typedef std::pair<int64, int64> Int64Int64Pair; | 45 typedef std::pair<int64, int64> Int64Int64Pair; |
| 46 | 46 |
| 47 INSERT_PAIR_TEST(Int64Int16Pair, 4, 6); | 47 INSERT_PAIR_TEST(Int64Int16Pair, 4, 6); |
| 48 INSERT_PAIR_TEST(Int64Int32Pair, 9, (1 << 29) + 378128932); | 48 INSERT_PAIR_TEST(Int64Int32Pair, 9, (1 << 29) + 378128932); |
| 49 INSERT_PAIR_TEST(Int64Int64Pair, 10, | 49 INSERT_PAIR_TEST(Int64Int64Pair, 10, |
| 50 (GG_INT64_C(1) << 60) + GG_INT64_C(78931732321)); | 50 (GG_INT64_C(1) << 60) + GG_INT64_C(78931732321)); |
| 51 } | 51 } |
| 52 | 52 |
| 53 } // namespace | 53 } // namespace |
| OLD | NEW |