| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "base/sequence_checker_impl.h" | 5 #include "base/sequence_checker_impl.h" |
| 6 | 6 |
| 7 #include <cstddef> | 7 #include <cstddef> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 209 Unretained(&sequence_checker_impl), | 209 Unretained(&sequence_checker_impl), |
| 210 false)); | 210 false)); |
| 211 } | 211 } |
| 212 | 212 |
| 213 EXPECT_TRUE(sequence_checker_impl.CalledOnValidSequence()); | 213 EXPECT_TRUE(sequence_checker_impl.CalledOnValidSequence()); |
| 214 } | 214 } |
| 215 | 215 |
| 216 } // namespace | 216 } // namespace |
| 217 | 217 |
| 218 } // namespace base | 218 } // namespace base |
| OLD | NEW |