Fix location of supervised user token file on non-chromeos.
[chromium-blink-merge.git] / content / gpu / in_process_gpu_thread.h
blobef6b4e17a65c4873eae777658e37ee31db2fb32a
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef CONTENT_GPU_IN_PROCESS_GPU_THREAD_H_
6 #define CONTENT_GPU_IN_PROCESS_GPU_THREAD_H_
8 #include "base/threading/thread.h"
9 #include "content/common/content_export.h"
11 namespace content {
13 class GpuProcess;
15 // This class creates a GPU thread (instead of a GPU process), when running
16 // with --in-process-gpu or --single-process.
17 class InProcessGpuThread : public base::Thread {
18 public:
19 explicit InProcessGpuThread(const std::string& channel_id);
20 virtual ~InProcessGpuThread();
22 protected:
23 virtual void Init() OVERRIDE;
24 virtual void CleanUp() OVERRIDE;
26 private:
27 std::string channel_id_;
28 // Deleted in CleanUp() on the gpu thread, so don't use smart pointers.
29 GpuProcess* gpu_process_;
31 DISALLOW_COPY_AND_ASSIGN(InProcessGpuThread);
34 CONTENT_EXPORT base::Thread* CreateInProcessGpuThread(
35 const std::string& channel_id);
37 } // namespace content
39 #endif // CONTENT_GPU_IN_PROCESS_GPU_THREAD_H_