Chromium Code Reviews| Index: base/threading/platform_thread.h |
| diff --git a/base/threading/platform_thread.h b/base/threading/platform_thread.h |
| index 653961ddfae05b34ddbf3def5fbe91f20e523c51..54beaf63474f5c396d8564a8fd3e0bac4de179ea 100644 |
| --- a/base/threading/platform_thread.h |
| +++ b/base/threading/platform_thread.h |
| @@ -89,6 +89,10 @@ class PlatformThreadHandle { |
| id_(id) { |
| } |
| + PlatformThreadId id() const { |
| + return id_; |
| + } |
| + |
| bool is_equal(const PlatformThreadHandle& other) const { |
| return handle_ == other.handle_; |
| } |