[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 | |
[email protected] | 10208ea | 2013-06-06 20:08:03 | [diff] [blame^] | 8 | #include "content/child/child_process.h" |
[email protected] | c0fc094 | 2010-01-13 00:55:37 | [diff] [blame] | 9 | |
[email protected] | eb39819 | 2012-10-22 20:16:19 | [diff] [blame] | 10 | namespace content { |
11 | |||||
[email protected] | c0fc094 | 2010-01-13 00:55:37 | [diff] [blame] | 12 | class GpuProcess : public ChildProcess { |
13 | public: | ||||
14 | GpuProcess(); | ||||
[email protected] | 3690ebe0 | 2011-05-25 09:08:19 | [diff] [blame] | 15 | virtual ~GpuProcess(); |
[email protected] | c0fc094 | 2010-01-13 00:55:37 | [diff] [blame] | 16 | |
17 | private: | ||||
18 | DISALLOW_COPY_AND_ASSIGN(GpuProcess); | ||||
19 | }; | ||||
20 | |||||
[email protected] | eb39819 | 2012-10-22 20:16:19 | [diff] [blame] | 21 | } |
22 | |||||
[email protected] | 623c0bd | 2011-03-12 01:00:41 | [diff] [blame] | 23 | #endif // CONTENT_GPU_GPU_PROCESS_H_ |