blob: 36f8f0766de3c10b6d02ac70f2bc7253252256ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// Copyright (c) 2010 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.
#ifndef BASE_PLATFORM_THREAD_H_
#define BASE_PLATFORM_THREAD_H_
#pragma once
// This file is for backwards-compatibility to keep things compiling that use
// the old location & lack of namespace.
//
// TODO(brettw) make all callers use the new location & namespace and delete
// this file.
#include "base/threading/platform_thread.h"
using base::PlatformThread;
using base::PlatformThreadHandle;
using base::PlatformThreadId;
using base::kNullThreadHandle;
using base::kInvalidThreadId;
#endif // BASE_PLATFORM_THREAD_H_
|