Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2950)

Unified Diff: base/message_loop/message_pump_win.cc

Issue 1207823004: PlatformThreadHandle: remove public id() interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: (rebase to show diff from 1193303002) Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | base/threading/platform_thread.h » ('j') | base/threading/platform_thread.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/message_loop/message_pump_win.cc
diff --git a/base/message_loop/message_pump_win.cc b/base/message_loop/message_pump_win.cc
index 187678aac913e7ad312dc10cb3ab956c318e182e..c6a125985c4da102cc99ef372d78510c901d7b51 100644
--- a/base/message_loop/message_pump_win.cc
+++ b/base/message_loop/message_pump_win.cc
@@ -113,8 +113,8 @@ MessagePumpForUI::~MessagePumpForUI() {
GetModuleFromAddress(&WndProcThunk));
::QueueUserAPC(
- reinterpret_cast<PAPCFUNC>(&MessagePumpForUI::ShutdownWorkerThread),
- ui_worker_thread_->thread_handle().platform_handle(), NULL);
+ reinterpret_cast<PAPCFUNC>(&MessagePumpForUI::ShutdownWorkerThread),
+ ui_worker_thread_->thread_handle().handle_, NULL);
ui_worker_thread_->Stop();
}
« no previous file with comments | « no previous file | base/threading/platform_thread.h » ('j') | base/threading/platform_thread.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698