blob: d51243a55d4cea1426d95bfc99e8dedb7c46b7f6 [file] [log] [blame]
// Copyright 2016 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.
module content.mojom;
// The name of the global singleton service hosted within the Content browser
// process. This service is generally granted unfettered access to arbitrary
// capabilities. Its global instance can be used to access other services by
// using the |ServiceManagerConnection::GetForProcess()| API.
const string kSystemServiceName = "content_system";
// The name for service instances spawned per BrowserContext in a unique
// instance group, to isolate incoming interface requests from renderers spawned
// for that BrowserContext.
const string kBrowserServiceName = "content_browser";
// The default service name used to identify the gpu process when connecting it
// to the Service Manager.
const string kGpuServiceName = "content_gpu";
// The service name used to identify the browser process's singleton service
// instance which packages other browser-wide services.
const string kPackagedServicesServiceName = "content_packaged_services";
// The default service name used to identify plugin processes when connecting
// them to the Service Manager.
const string kPluginServiceName = "content_plugin";
// The default service name used to identify render processes when connecting
// them to the Service Manager.
const string kRendererServiceName = "content_renderer";
// The default service name used to identify utility processes when connecting
// them to the Service Manager.
const string kUtilityServiceName = "content_utility";
// The name for the network service running in the utility process.
const string kNetworkServiceName = "network";