diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-12 01:00:41 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-12 01:00:41 +0000 |
commit | 623c0bd198a26b6609c7545a0cce0578dbad5316 (patch) | |
tree | e5cfac9d974797d95a8b4ee0aa0e4204826f089c /content/gpu/gpu_process.h | |
parent | 23716fb643383cb737e564d55234a7c2d58eba00 (diff) | |
download | chromium_src-623c0bd198a26b6609c7545a0cce0578dbad5316.zip chromium_src-623c0bd198a26b6609c7545a0cce0578dbad5316.tar.gz chromium_src-623c0bd198a26b6609c7545a0cce0578dbad5316.tar.bz2 |
Move chrome\gpu to content\gpu.
TBR=avi
Review URL: http://codereview.chromium.org/6684015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77903 0039d316-1c4b-4281-b951-d872f2087c98
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_ |