summaryrefslogtreecommitdiffstats
path: root/mobile/android/geckoview/src/main/java/org/mozilla/gecko/process/GeckoChildProcessServices.jinja
blob: fa2f3365665d727414e54ab907adcf8f04e2b2c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* -*- Mode: Java; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: nil; -*-
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

package org.mozilla.gecko.process;

public class GeckoChildProcessServices {
    /* package */ static final int MAX_NUM_ISOLATED_CONTENT_SERVICES = {{MOZ_ANDROID_CONTENT_SERVICE_COUNT}};
    public static final class gmplugin extends GeckoServiceChildProcess {}
    public static final class socket extends GeckoServiceChildProcess {}
    public static final class gpu extends GeckoServiceGpuProcess {}
    public static final class utility extends GeckoServiceChildProcess {}
    public static final class ipdlunittest extends GeckoServiceChildProcess {}

{% for id in range(0, MOZ_ANDROID_CONTENT_SERVICE_COUNT | int) %}
    public static final class tab{{ id }} extends GeckoServiceChildProcess {}
{% endfor %}
}