From b138a660a890daea6f7836b39b8da859fd5bb14e Mon Sep 17 00:00:00 2001 From: "scherkus@chromium.org" Date: Wed, 29 Feb 2012 19:14:59 +0000 Subject: Remove NOTIMPLEMENTED() from PlatformThread::SetThreadPriority() for posix. Change prevents log spam when using WebAudio, WebRTC, or HTML5 audio/video. The alternative of using #ifdefs at the callsites seems less ideal. Also remove related tsan suppression. BUG=100026,116172 Review URL: https://chromiumcodereview.appspot.com/9521010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@124222 0039d316-1c4b-4281-b951-d872f2087c98 --- base/threading/platform_thread_win.cc | 3 --- 1 file changed, 3 deletions(-) (limited to 'base/threading/platform_thread_win.cc') diff --git a/base/threading/platform_thread_win.cc b/base/threading/platform_thread_win.cc index 1bb50c5..4ba5a8a 100644 --- a/base/threading/platform_thread_win.cc +++ b/base/threading/platform_thread_win.cc @@ -186,9 +186,6 @@ void PlatformThread::SetThreadPriority(PlatformThreadHandle handle, case kThreadPriority_RealtimeAudio: ::SetThreadPriority(handle, THREAD_PRIORITY_TIME_CRITICAL); break; - default: - NOTIMPLEMENTED(); - break; } } -- cgit v1.1