Commit 769a5998 authored by boliu@chromium.org's avatar boliu@chromium.org

base: Add const to a few PlatformThreadHandle methods

BUG=

Review URL: https://codereview.chromium.org/170283013

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@252146 0039d316-1c4b-4281-b951-d872f2087c98
parent f73c3e5a
......@@ -53,15 +53,15 @@ class PlatformThreadHandle {
id_(id) {
}
bool is_equal(const PlatformThreadHandle& other) {
bool is_equal(const PlatformThreadHandle& other) const {
return handle_ == other.handle_;
}
bool is_null() {
bool is_null() const {
return !handle_;
}
Handle platform_handle() {
Handle platform_handle() const {
return handle_;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment