本文整理汇总了Java中org.chromium.content.app.SandboxedProcessService类的典型用法代码示例。如果您正苦于以下问题:Java SandboxedProcessService类的具体用法?Java SandboxedProcessService怎么用?Java SandboxedProcessService使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
SandboxedProcessService类属于org.chromium.content.app包,在下文中一共展示了SandboxedProcessService类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: ChildConnectionAllocator
import org.chromium.content.app.SandboxedProcessService; //导入依赖的package包/类
public ChildConnectionAllocator(boolean inSandbox) {
int numChildServices = inSandbox ?
MAX_REGISTERED_SANDBOXED_SERVICES : MAX_REGISTERED_PRIVILEGED_SERVICES;
mChildProcessConnections = new ChildProcessConnection[numChildServices];
mFreeConnectionIndices = new ArrayList<Integer>(numChildServices);
for (int i = 0; i < numChildServices; i++) {
mFreeConnectionIndices.add(i);
}
setServiceClass(inSandbox ?
SandboxedProcessService.class : PrivilegedProcessService.class);
mInSandbox = inSandbox;
}
开发者ID:openresearch,项目名称:android-chromium-view,代码行数:13,代码来源:ChildProcessLauncher.java
示例2: setChildProcessClass
import org.chromium.content.app.SandboxedProcessService; //导入依赖的package包/类
public static void setChildProcessClass(
Class<? extends SandboxedProcessService> sandboxedServiceClass,
Class<? extends PrivilegedProcessService> privilegedServiceClass) {
// We should guarantee this is called before allocating connection.
assert !sConnectionAllocated;
sSandboxedChildConnectionAllocator.setServiceClass(sandboxedServiceClass);
sPrivilegedChildConnectionAllocator.setServiceClass(privilegedServiceClass);
}
开发者ID:openresearch,项目名称:android-chromium-view,代码行数:9,代码来源:ChildProcessLauncher.java
示例3: ChildConnectionAllocator
import org.chromium.content.app.SandboxedProcessService; //导入依赖的package包/类
public ChildConnectionAllocator(boolean inSandbox) {
int numChildServices = inSandbox ?
MAX_REGISTERED_SANDBOXED_SERVICES : MAX_REGISTERED_PRIVILEGED_SERVICES;
mChildProcessConnections = new ChildProcessConnectionImpl[numChildServices];
mFreeConnectionIndices = new ArrayList<Integer>(numChildServices);
for (int i = 0; i < numChildServices; i++) {
mFreeConnectionIndices.add(i);
}
setServiceClass(inSandbox ?
SandboxedProcessService.class : PrivilegedProcessService.class);
mInSandbox = inSandbox;
}
开发者ID:mogoweb,项目名称:chromium_webview,代码行数:13,代码来源:ChildProcessLauncher.java
示例4: setChildProcessClass
import org.chromium.content.app.SandboxedProcessService; //导入依赖的package包/类
/**
* Sets service class for sandboxed service and privileged service.
*/
public static void setChildProcessClass(
Class<? extends SandboxedProcessService> sandboxedServiceClass,
Class<? extends PrivilegedProcessService> privilegedServiceClass) {
// We should guarantee this is called before allocating connection.
assert !sConnectionAllocated;
sSandboxedChildConnectionAllocator.setServiceClass(sandboxedServiceClass);
sPrivilegedChildConnectionAllocator.setServiceClass(privilegedServiceClass);
}
开发者ID:mogoweb,项目名称:chromium_webview,代码行数:12,代码来源:ChildProcessLauncher.java
注:本文中的org.chromium.content.app.SandboxedProcessService类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论