summaryrefslogtreecommitdiffstats
path: root/win8
diff options
context:
space:
mode:
authortoyoshim <toyoshim@chromium.org>2015-07-24 02:25:16 -0700
committerCommit bot <commit-bot@chromium.org>2015-07-24 09:26:02 +0000
commitc41261e9491c3a763c472fe35737ec36200d6310 (patch)
treeadcbf6f746aef53e4e1be242ac6bf73f32162f23 /win8
parentf08040289fb0ed72c792863d2dab73fe4d1ca943 (diff)
downloadchromium_src-c41261e9491c3a763c472fe35737ec36200d6310.zip
chromium_src-c41261e9491c3a763c472fe35737ec36200d6310.tar.gz
chromium_src-c41261e9491c3a763c472fe35737ec36200d6310.tar.bz2
PlatformThreadHandle: remove public id() interface
Remove PlatformThreadHandle.id() interface. Also remove id_ member that is not needed any more. BUG=468793 TEST=./out/Debug/base_unittests TEST=git cl try Review URL: https://codereview.chromium.org/1207823004 Cr-Commit-Position: refs/heads/master@{#340242}
Diffstat (limited to 'win8')
-rw-r--r--win8/test/open_with_dialog_async.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/win8/test/open_with_dialog_async.cc b/win8/test/open_with_dialog_async.cc
index 2308b55..e2d6167 100644
--- a/win8/test/open_with_dialog_async.cc
+++ b/win8/test/open_with_dialog_async.cc
@@ -79,7 +79,7 @@ void OnOpenWithDialogDone(OpenWithContext* context, HRESULT result) {
// Calls SHOpenWithDialog (blocking), and returns the result back to the client
// thread.
void OpenWithDialogTask(OpenWithContext* context) {
- DCHECK_EQ(context->thread.thread_id(), base::PlatformThread::CurrentId());
+ DCHECK_EQ(context->thread.GetThreadId(), base::PlatformThread::CurrentId());
OPENASINFO open_as_info = {
context->file_name.c_str(),
context->file_type_class.c_str(),