| Index: base/threading/platform_thread_unittest.cc
|
| diff --git a/base/threading/platform_thread_unittest.cc b/base/threading/platform_thread_unittest.cc
|
| index 121ac6a28770e1cead657210a7167c8e6a8aeb05..0febf8ba9ba062760d00df16ac2a6feb36fdd378 100644
|
| --- a/base/threading/platform_thread_unittest.cc
|
| +++ b/base/threading/platform_thread_unittest.cc
|
| @@ -260,9 +260,9 @@
|
| // Test changing a created thread's priority (which has different semantics on
|
| // some platforms).
|
| TEST(PlatformThreadTest, ThreadPriorityCurrentThread) {
|
| - const bool increased_priority_allowed =
|
| + const bool increase_priority_allowed =
|
| PlatformThread::CanIncreaseCurrentThreadPriority();
|
| - if (increased_priority_allowed) {
|
| + if (increase_priority_allowed) {
|
| // Bump the priority in order to verify that new threads are started with
|
| // normal priority.
|
| PlatformThread::SetCurrentThreadPriority(ThreadPriority::DISPLAY);
|
| @@ -270,7 +270,7 @@
|
|
|
| // Toggle each supported priority on the thread and confirm it affects it.
|
| for (size_t i = 0; i < arraysize(kThreadPriorityTestValues); ++i) {
|
| - if (!increased_priority_allowed &&
|
| + if (!increase_priority_allowed &&
|
| kThreadPriorityTestValues[i] >
|
| PlatformThread::GetCurrentThreadPriority()) {
|
| continue;
|
|
|