summaryrefslogtreecommitdiff
path: root/base/threading/simple_thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'base/threading/simple_thread.h')
-rw-r--r--base/threading/simple_thread.h19
1 files changed, 8 insertions, 11 deletions
diff --git a/base/threading/simple_thread.h b/base/threading/simple_thread.h
index 36548d36fd..3deeb1018c 100644
--- a/base/threading/simple_thread.h
+++ b/base/threading/simple_thread.h
@@ -40,16 +40,17 @@
#ifndef BASE_THREADING_SIMPLE_THREAD_H_
#define BASE_THREADING_SIMPLE_THREAD_H_
-#include <string>
+#include <stddef.h>
+
#include <queue>
+#include <string>
#include <vector>
#include "base/base_export.h"
-#include "base/basictypes.h"
#include "base/compiler_specific.h"
-#include "base/threading/platform_thread.h"
#include "base/synchronization/lock.h"
#include "base/synchronization/waitable_event.h"
+#include "base/threading/platform_thread.h"
namespace base {
@@ -59,8 +60,10 @@ class BASE_EXPORT SimpleThread : public PlatformThread::Delegate {
public:
class BASE_EXPORT Options {
public:
- Options() : stack_size_(0), priority_(ThreadPriority::NORMAL) { }
- ~Options() { }
+ Options() : stack_size_(0), priority_(ThreadPriority::NORMAL) {}
+ explicit Options(ThreadPriority priority)
+ : stack_size_(0), priority_(priority) {}
+ ~Options() {}
// We use the standard compiler-supplied copy constructor.
@@ -109,12 +112,6 @@ class BASE_EXPORT SimpleThread : public PlatformThread::Delegate {
// Overridden from PlatformThread::Delegate:
void ThreadMain() override;
- // Only set priorities with a careful understanding of the consequences.
- // This is meant for very limited use cases.
- void SetThreadPriority(ThreadPriority priority) {
- PlatformThread::SetThreadPriority(thread_, priority);
- }
-
private:
const std::string name_prefix_;
std::string name_;