[email protected] | f786717 | 2012-07-11 07:04:07 | [diff] [blame] | 1 | // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
[email protected] | c0fc094 | 2010-01-13 00:55:37 | [diff] [blame] | 2 | // Use of this source code is governed by a BSD-style license that can be |
3 | // found in the LICENSE file. | ||||
4 | |||||
[email protected] | 623c0bd | 2011-03-12 01:00:41 | [diff] [blame] | 5 | #ifndef CONTENT_GPU_GPU_PROCESS_H_ |
6 | #define CONTENT_GPU_GPU_PROCESS_H_ | ||||
[email protected] | c0fc094 | 2010-01-13 00:55:37 | [diff] [blame] | 7 | |
avi | 66a0772 | 2015-12-25 23:38:12 | [diff] [blame] | 8 | #include "base/macros.h" |
[email protected] | 10208ea | 2013-06-06 20:08:03 | [diff] [blame] | 9 | #include "content/child/child_process.h" |
[email protected] | c0fc094 | 2010-01-13 00:55:37 | [diff] [blame] | 10 | |
[email protected] | eb39819 | 2012-10-22 20:16:19 | [diff] [blame] | 11 | namespace content { |
12 | |||||
[email protected] | c0fc094 | 2010-01-13 00:55:37 | [diff] [blame] | 13 | class GpuProcess : public ChildProcess { |
14 | public: | ||||
reveman | 7caf8cf | 2016-02-16 02:39:05 | [diff] [blame] | 15 | explicit GpuProcess(base::ThreadPriority io_thread_priority); |
dcheng | e933b3e | 2014-10-21 11:44:09 | [diff] [blame] | 16 | ~GpuProcess() override; |
[email protected] | c0fc094 | 2010-01-13 00:55:37 | [diff] [blame] | 17 | |
18 | private: | ||||
19 | DISALLOW_COPY_AND_ASSIGN(GpuProcess); | ||||
20 | }; | ||||
21 | |||||
[email protected] | eb39819 | 2012-10-22 20:16:19 | [diff] [blame] | 22 | } |
23 | |||||
[email protected] | 623c0bd | 2011-03-12 01:00:41 | [diff] [blame] | 24 | #endif // CONTENT_GPU_GPU_PROCESS_H_ |