diff options
Diffstat (limited to 'chrome/gpu/gpu_process.h')
-rw-r--r-- | chrome/gpu/gpu_process.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/chrome/gpu/gpu_process.h b/chrome/gpu/gpu_process.h new file mode 100644 index 0000000..92c73a6 --- /dev/null +++ b/chrome/gpu/gpu_process.h @@ -0,0 +1,19 @@ +// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef CHROME_GPU_GPU_PROCESS_H_ +#define CHROME_GPU_GPU_PROCESS_H_ + +#include "chrome/common/child_process.h" + +class GpuProcess : public ChildProcess { + public: + GpuProcess(); + ~GpuProcess(); + + private: + DISALLOW_COPY_AND_ASSIGN(GpuProcess); +}; + +#endif // CHROME_GPU_GPU_PROCESS_H_ |