OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "public/platform/WebThread.h" | 5 #include "public/platform/WebThread.h" |
6 | 6 |
7 #include "platform/WebTaskRunner.h" | 7 #include "platform/WebTaskRunner.h" |
8 #include "wtf/Assertions.h" | 8 #include "platform/wtf/Assertions.h" |
9 | 9 |
10 #if OS(WIN) | 10 #if OS(WIN) |
11 #include <windows.h> | 11 #include <windows.h> |
12 #elif OS(POSIX) | 12 #elif OS(POSIX) |
13 #include <unistd.h> | 13 #include <unistd.h> |
14 #endif | 14 #endif |
15 | 15 |
16 namespace blink { | 16 namespace blink { |
17 | 17 |
18 #if OS(WIN) | 18 #if OS(WIN) |
19 static_assert(sizeof(blink::PlatformThreadId) >= sizeof(DWORD), | 19 static_assert(sizeof(blink::PlatformThreadId) >= sizeof(DWORD), |
20 "size of platform thread id is too small"); | 20 "size of platform thread id is too small"); |
21 #elif OS(POSIX) | 21 #elif OS(POSIX) |
22 static_assert(sizeof(blink::PlatformThreadId) >= sizeof(pid_t), | 22 static_assert(sizeof(blink::PlatformThreadId) >= sizeof(pid_t), |
23 "size of platform thread id is too small"); | 23 "size of platform thread id is too small"); |
24 #else | 24 #else |
25 #error Unexpected platform | 25 #error Unexpected platform |
26 #endif | 26 #endif |
27 | 27 |
28 base::SingleThreadTaskRunner* WebThread::GetSingleThreadTaskRunner() { | 28 base::SingleThreadTaskRunner* WebThread::GetSingleThreadTaskRunner() { |
29 return GetWebTaskRunner()->ToSingleThreadTaskRunner(); | 29 return GetWebTaskRunner()->ToSingleThreadTaskRunner(); |
30 } | 30 } |
31 | 31 |
32 } // namespace blink | 32 } // namespace blink |
OLD | NEW |