blob: f4db71e18e0bc09da874a2027b9d4b622a1b034a [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]10208ea2013-06-06 20:08:038#include "content/child/child_process.h"
[email protected]c0fc0942010-01-13 00:55:379
[email protected]eb398192012-10-22 20:16:1910namespace content {
11
[email protected]c0fc0942010-01-13 00:55:3712class GpuProcess : public ChildProcess {
13 public:
14 GpuProcess();
[email protected]3690ebe02011-05-25 09:08:1915 virtual ~GpuProcess();
[email protected]c0fc0942010-01-13 00:55:3716
17 private:
18 DISALLOW_COPY_AND_ASSIGN(GpuProcess);
19};
20
[email protected]eb398192012-10-22 20:16:1921}
22
[email protected]623c0bd2011-03-12 01:00:4123#endif // CONTENT_GPU_GPU_PROCESS_H_