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

Side by Side Diff: third_party/WebKit/Source/platform/WebThread.cpp

Issue 2810413002: Rewrite references to "wtf/" to "platform/wtf/" in the rest of platform/. (Closed)
Patch Set: Created 3 years, 8 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 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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/platform/WebTaskRunner.h ('k') | third_party/WebKit/Source/platform/WebThreadSupportingGC.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698