blob: 92c73a677e7d336ff63bb5587e08ac988b9cf8dd [file] [log] [blame]
[email protected]c0fc0942010-01-13 00:55:371// 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
10class 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_