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

Side by Side Diff: base/threading/worker_pool_unittest.cc

Issue 1550503002: Switch to standard integer types in base/threading/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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
OLDNEW
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 "base/threading/worker_pool.h" 5 #include "base/threading/worker_pool.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/bind_helpers.h" 8 #include "base/bind_helpers.h"
9 #include "base/location.h" 9 #include "base/location.h"
10 #include "base/message_loop/message_loop.h" 10 #include "base/message_loop/message_loop.h"
11 #include "base/run_loop.h" 11 #include "base/run_loop.h"
12 #include "base/synchronization/waitable_event.h" 12 #include "base/synchronization/waitable_event.h"
13 #include "base/test/test_timeouts.h" 13 #include "base/test/test_timeouts.h"
14 #include "base/threading/thread_checker_impl.h" 14 #include "base/threading/thread_checker_impl.h"
15 #include "base/time/time.h" 15 #include "base/time/time.h"
16 #include "build/build_config.h"
16 #include "testing/gtest/include/gtest/gtest.h" 17 #include "testing/gtest/include/gtest/gtest.h"
17 #include "testing/platform_test.h" 18 #include "testing/platform_test.h"
18 19
19 typedef PlatformTest WorkerPoolTest; 20 typedef PlatformTest WorkerPoolTest;
20 21
21 namespace base { 22 namespace base {
22 23
23 namespace { 24 namespace {
24 25
25 class PostTaskAndReplyTester 26 class PostTaskAndReplyTester
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 // Ensure that the other thread has a chance to run even on a single-core 104 // Ensure that the other thread has a chance to run even on a single-core
104 // device. 105 // device.
105 pthread_yield_np(); 106 pthread_yield_np();
106 #endif 107 #endif
107 RunLoop().RunUntilIdle(); 108 RunLoop().RunUntilIdle();
108 } 109 }
109 EXPECT_TRUE(tester->finished()); 110 EXPECT_TRUE(tester->finished());
110 } 111 }
111 112
112 } // namespace base 113 } // namespace base
OLDNEW
« no previous file with comments | « base/threading/worker_pool_posix_unittest.cc ('k') | components/offline_pages/offline_page_metadata_store.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698