Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1241)

Side by Side Diff: base/sequence_checker_unittest.cc

Issue 1538743002: Switch to standard integer types in base/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: DEPS roll too Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « base/sequence_checker_impl.h ('k') | base/sequenced_task_runner_helpers.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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.h" 5 #include "base/sequence_checker.h"
6 6
7 #include <stddef.h>
8
7 #include <utility> 9 #include <utility>
8 10
9 #include "base/basictypes.h"
10 #include "base/bind.h" 11 #include "base/bind.h"
11 #include "base/bind_helpers.h" 12 #include "base/bind_helpers.h"
12 #include "base/location.h" 13 #include "base/location.h"
13 #include "base/logging.h" 14 #include "base/logging.h"
15 #include "base/macros.h"
14 #include "base/memory/ref_counted.h" 16 #include "base/memory/ref_counted.h"
15 #include "base/memory/scoped_ptr.h" 17 #include "base/memory/scoped_ptr.h"
16 #include "base/single_thread_task_runner.h" 18 #include "base/single_thread_task_runner.h"
17 #include "base/test/sequenced_worker_pool_owner.h" 19 #include "base/test/sequenced_worker_pool_owner.h"
18 #include "base/threading/thread.h" 20 #include "base/threading/thread.h"
19 #include "testing/gtest/include/gtest/gtest.h" 21 #include "testing/gtest/include/gtest/gtest.h"
20 22
21 // Duplicated from base/sequence_checker.h so that we can be good citizens 23 // Duplicated from base/sequence_checker.h so that we can be good citizens
22 // there and undef the macro. 24 // there and undef the macro.
23 #if (!defined(NDEBUG) || defined(DCHECK_ALWAYS_ON)) 25 #if (!defined(NDEBUG) || defined(DCHECK_ALWAYS_ON))
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
325 #endif // ENABLE_SEQUENCE_CHECKER 327 #endif // ENABLE_SEQUENCE_CHECKER
326 328
327 #endif // GTEST_HAS_DEATH_TEST || !ENABLE_SEQUENCE_CHECKER 329 #endif // GTEST_HAS_DEATH_TEST || !ENABLE_SEQUENCE_CHECKER
328 330
329 } // namespace 331 } // namespace
330 332
331 } // namespace base 333 } // namespace base
332 334
333 // Just in case we ever get lumped together with other compilation units. 335 // Just in case we ever get lumped together with other compilation units.
334 #undef ENABLE_SEQUENCE_CHECKER 336 #undef ENABLE_SEQUENCE_CHECKER
OLDNEW
« no previous file with comments | « base/sequence_checker_impl.h ('k') | base/sequenced_task_runner_helpers.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698