summaryrefslogtreecommitdiff
path: root/src/mbgl/util/thread_context.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mbgl/util/thread_context.hpp')
-rw-r--r--src/mbgl/util/thread_context.hpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/mbgl/util/thread_context.hpp b/src/mbgl/util/thread_context.hpp
index 2b22b2faf4..dea98fe3fa 100644
--- a/src/mbgl/util/thread_context.hpp
+++ b/src/mbgl/util/thread_context.hpp
@@ -6,13 +6,8 @@
#include <thread>
namespace mbgl {
-
-class FileSource;
-
namespace util {
-class GLObjectStore;
-
enum class ThreadPriority : bool {
Regular,
Low,
@@ -35,17 +30,9 @@ public:
static std::string getName();
static ThreadPriority getPriority();
- static FileSource* getFileSource();
- static void setFileSource(FileSource* fileSource);
- static GLObjectStore* getGLObjectStore();
- static void setGLObjectStore(GLObjectStore* glObjectStore);
-
std::string name;
ThreadType type;
ThreadPriority priority;
-
- FileSource* fileSource = nullptr;
- GLObjectStore* glObjectStore = nullptr;
};
} // namespace util