diff options
author | scherkus@chromium.org <scherkus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-29 19:14:59 +0000 |
---|---|---|
committer | scherkus@chromium.org <scherkus@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-29 19:14:59 +0000 |
commit | b138a660a890daea6f7836b39b8da859fd5bb14e (patch) | |
tree | e301faedea750efd3ffe04244680efa9934512a5 /base/threading/platform_thread_win.cc | |
parent | 9d9e2f19b1c27d1d29d0086f84ef301d25d6ae9b (diff) | |
download | chromium_src-b138a660a890daea6f7836b39b8da859fd5bb14e.zip chromium_src-b138a660a890daea6f7836b39b8da859fd5bb14e.tar.gz chromium_src-b138a660a890daea6f7836b39b8da859fd5bb14e.tar.bz2 |
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
Diffstat (limited to 'base/threading/platform_thread_win.cc')
-rw-r--r-- | base/threading/platform_thread_win.cc | 3 |
1 files changed, 0 insertions, 3 deletions
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; } } |