| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef BIN_THREAD_POOL_WIN_H_ | 5 #ifndef BIN_THREAD_POOL_WIN_H_ |
| 6 #define BIN_THREAD_POOL_WIN_H_ | 6 #define BIN_THREAD_POOL_WIN_H_ |
| 7 | 7 |
| 8 #if !defined(BIN_THREAD_POOL_H_) |
| 9 #error Do not include thread_pool_win.h directly; use thread_pool.h instead. |
| 10 #endif |
| 11 |
| 8 #include "platform/globals.h" | 12 #include "platform/globals.h" |
| 9 | 13 |
| 10 class ThreadPoolData { | 14 class ThreadPoolData { |
| 11 private: | 15 private: |
| 12 static const int kMaxThreadPoolSize = 16; | 16 static const int kMaxThreadPoolSize = 16; |
| 13 | 17 |
| 14 ThreadPoolData() { UNIMPLEMENTED(); } | 18 ThreadPoolData() { UNIMPLEMENTED(); } |
| 15 ~ThreadPoolData() {} | 19 ~ThreadPoolData() {} |
| 16 | 20 |
| 17 friend class ThreadPool; | 21 friend class ThreadPool; |
| 18 | 22 |
| 19 DISALLOW_ALLOCATION(); | 23 DISALLOW_ALLOCATION(); |
| 20 DISALLOW_COPY_AND_ASSIGN(ThreadPoolData); | 24 DISALLOW_COPY_AND_ASSIGN(ThreadPoolData); |
| 21 }; | 25 }; |
| 22 | 26 |
| 23 #endif // BIN_THREAD_POOL_WIN_H_ | 27 #endif // BIN_THREAD_POOL_WIN_H_ |
| OLD | NEW |