[email protected] | c0fc094 | 2010-01-13 00:55:37 | [diff] [blame^] | 1 | // Copyright (c) 2010 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. |
| 4 | |
| 5 | #ifndef CHROME_GPU_GPU_PROCESS_H_ |
| 6 | #define CHROME_GPU_GPU_PROCESS_H_ |
| 7 | |
| 8 | #include "chrome/common/child_process.h" |
| 9 | |
| 10 | class GpuProcess : public ChildProcess { |
| 11 | public: |
| 12 | GpuProcess(); |
| 13 | ~GpuProcess(); |
| 14 | |
| 15 | private: |
| 16 | DISALLOW_COPY_AND_ASSIGN(GpuProcess); |
| 17 | }; |
| 18 | |
| 19 | #endif // CHROME_GPU_GPU_PROCESS_H_ |