summaryrefslogtreecommitdiffstats
path: root/content/gpu/gpu_process_control_impl.h
blob: b886bb5fcfc133f9129bf4a96d20b506794eac6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright 2015 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_CONTROL_IMPL_H_
#define CONTENT_GPU_GPU_PROCESS_CONTROL_IMPL_H_

#include "base/macros.h"
#include "content/child/process_control_impl.h"

namespace content {

// Customization of ProcessControlImpl for the GPU process.
class GpuProcessControlImpl : public ProcessControlImpl {
 public:
  GpuProcessControlImpl();
  ~GpuProcessControlImpl() override;

  // ProcessControlImpl:
  void RegisterLoaders(NameToLoaderMap* name_to_loader_map) override;

 private:
  DISALLOW_COPY_AND_ASSIGN(GpuProcessControlImpl);
};

}  // namespace content

#endif  // CONTENT_GPU_GPU_PROCESS_CONTROL_IMPL_H_