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

Unified Diff: chrome_frame/chrome_frame_automation.h

Issue 12741012: base: Support setting thread priorities generically. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove static initializers. Created 7 years, 7 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 | « chrome/browser/printing/print_job.cc ('k') | content/renderer/media/webrtc_local_audio_track_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/chrome_frame_automation.h
diff --git a/chrome_frame/chrome_frame_automation.h b/chrome_frame/chrome_frame_automation.h
index e903268486997f6e6e5c2f2cc18124e6045e1242..150a778341c1874619db1d647fd4472966e2826c 100644
--- a/chrome_frame/chrome_frame_automation.h
+++ b/chrome_frame/chrome_frame_automation.h
@@ -226,7 +226,8 @@ class AutomationProxyCacheEntry
DWORD WaitForThread(DWORD timeout) { // NOLINT
DCHECK(thread_.get());
- return ::WaitForSingleObject(thread_->thread_handle(), timeout);
+ return ::WaitForSingleObject(thread_->thread_handle().platform_handle(),
+ timeout);
}
bool IsSameProfile(const std::wstring& name) const {
« no previous file with comments | « chrome/browser/printing/print_job.cc ('k') | content/renderer/media/webrtc_local_audio_track_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698