blob: dbcf57759eeab2f10380918a73051cc02e49e29a [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
avi66a07722015-12-25 23:38:128#include "base/macros.h"
[email protected]10208ea2013-06-06 20:08:039#include "content/child/child_process.h"
[email protected]c0fc0942010-01-13 00:55:3710
[email protected]eb398192012-10-22 20:16:1911namespace content {
12
[email protected]c0fc0942010-01-13 00:55:3713class GpuProcess : public ChildProcess {
14 public:
reveman7caf8cf2016-02-16 02:39:0515 explicit GpuProcess(base::ThreadPriority io_thread_priority);
dchenge933b3e2014-10-21 11:44:0916 ~GpuProcess() override;
[email protected]c0fc0942010-01-13 00:55:3717
18 private:
19 DISALLOW_COPY_AND_ASSIGN(GpuProcess);
20};
21
[email protected]eb398192012-10-22 20:16:1922}
23
[email protected]623c0bd2011-03-12 01:00:4124#endif // CONTENT_GPU_GPU_PROCESS_H_