diff options
Diffstat (limited to 'content/gpu/gpu_process.h')
-rw-r--r-- | content/gpu/gpu_process.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/content/gpu/gpu_process.h b/content/gpu/gpu_process.h new file mode 100644 index 0000000..8dfe0e3 --- /dev/null +++ b/content/gpu/gpu_process.h @@ -0,0 +1,20 @@ +// Copyright (c) 2011 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 CONTENT_GPU_GPU_PROCESS_H_ +#define CONTENT_GPU_GPU_PROCESS_H_ +#pragma once + +#include "content/common/child_process.h" + +class GpuProcess : public ChildProcess { + public: + GpuProcess(); + ~GpuProcess(); + + private: + DISALLOW_COPY_AND_ASSIGN(GpuProcess); +}; + +#endif // CONTENT_GPU_GPU_PROCESS_H_ |