| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 "chrome/common/id_map.h" | 5 #include "base/id_map.h" |
| 6 | 6 |
| 7 #include "testing/gtest/include/gtest/gtest.h" | 7 #include "testing/gtest/include/gtest/gtest.h" |
| 8 | 8 |
| 9 namespace { | 9 namespace { |
| 10 | 10 |
| 11 class IDMapTest : public testing::Test { | 11 class IDMapTest : public testing::Test { |
| 12 }; | 12 }; |
| 13 | 13 |
| 14 class TestObject { | 14 class TestObject { |
| 15 }; | 15 }; |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 default: | 97 default: |
| 98 FAIL() << "should not have that many elements"; | 98 FAIL() << "should not have that many elements"; |
| 99 break; | 99 break; |
| 100 } | 100 } |
| 101 | 101 |
| 102 counter++; | 102 counter++; |
| 103 } | 103 } |
| 104 } | 104 } |
| 105 | 105 |
| 106 } // namespace | 106 } // namespace |
| OLD | NEW |