1 // Copyright 2015 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.
5 #ifndef CONTENT_UTILITY_UTILITY_PROCESS_CONTROL_IMPL_H_
6 #define CONTENT_UTILITY_UTILITY_PROCESS_CONTROL_IMPL_H_
8 #include "base/macros.h"
9 #include "content/child/process_control_impl.h"
13 // Customization of ProcessControlImpl for the utility process. Exposed to the
14 // browser via the utility process's ServiceRegistry.
15 class UtilityProcessControlImpl
: public ProcessControlImpl
{
17 UtilityProcessControlImpl();
18 ~UtilityProcessControlImpl() override
;
20 // ProcessControlImpl:
21 void RegisterApplicationLoaders(URLToLoaderMap
* url_to_loader_map
) override
;
24 DISALLOW_COPY_AND_ASSIGN(UtilityProcessControlImpl
);
27 } // namespace content
29 #endif // CONTENT_UTILITY_UTILITY_PROCESS_CONTROL_IMPL_H_