blob: b8b1eb7265400ac0e8900af48d4bc9c37b179349 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "public/platform/WebThread.h"
#include "base/single_thread_task_runner.h"
#include "build/build_config.h"
#include "platform/WebTaskRunner.h"
#include "platform/wtf/Assertions.h"
#if defined(OS_WIN)
#include <windows.h>
#elif defined(OS_POSIX)
#include <unistd.h>
#endif
namespace blink {
#if defined(OS_WIN)
static_assert(sizeof(blink::PlatformThreadId) >= sizeof(DWORD),
"size of platform thread id is too small");
#elif defined(OS_POSIX)
static_assert(sizeof(blink::PlatformThreadId) >= sizeof(pid_t),
"size of platform thread id is too small");
#else
#error Unexpected platform
#endif
scoped_refptr<base::SingleThreadTaskRunner>
WebThread::GetSingleThreadTaskRunner() {
return GetWebTaskRunner();
}
} // namespace blink