blob: 2a7af163131e524f84063835713cec811a150acd [file] [log] [blame]
[email protected]f7867172012-07-11 07:04:071// Copyright (c) 2012 The Chromium Authors. All rights reserved.
[email protected]c0fc0942010-01-13 00:55:372// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
[email protected]623c0bd2011-03-12 01:00:415#ifndef CONTENT_GPU_GPU_PROCESS_H_
6#define CONTENT_GPU_GPU_PROCESS_H_
[email protected]c0fc0942010-01-13 00:55:377
[email protected]7ef40ffe12011-03-08 05:05:288#include "content/common/child_process.h"
[email protected]c0fc0942010-01-13 00:55:379
10class GpuProcess : public ChildProcess {
11 public:
12 GpuProcess();
[email protected]3690ebe02011-05-25 09:08:1913 virtual ~GpuProcess();
[email protected]c0fc0942010-01-13 00:55:3714
15 private:
16 DISALLOW_COPY_AND_ASSIGN(GpuProcess);
17};
18
[email protected]623c0bd2011-03-12 01:00:4119#endif // CONTENT_GPU_GPU_PROCESS_H_