Chromium Code Reviews| Index: content/public/test/android/javatests/src/org/chromium/content/browser/test/ChildProcessAllocatorSettings.java |
| diff --git a/content/public/test/android/javatests/src/org/chromium/content/browser/test/ChildProcessAllocatorSettings.java b/content/public/test/android/javatests/src/org/chromium/content/browser/test/ChildProcessAllocatorSettings.java |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..22caa00681cb98134fcb691a5b570f99721a343f |
| --- /dev/null |
| +++ b/content/public/test/android/javatests/src/org/chromium/content/browser/test/ChildProcessAllocatorSettings.java |
| @@ -0,0 +1,19 @@ |
| +// Copyright 2017 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. |
| + |
| +package org.chromium.content.browser.test; |
| + |
| +import java.lang.annotation.ElementType; |
| +import java.lang.annotation.Retention; |
| +import java.lang.annotation.RetentionPolicy; |
| +import java.lang.annotation.Target; |
| + |
| +/** An annotation used in test to hard-code some of the ChildProcessAllocator settings */ |
| + |
|
boliu
2017/04/10 18:43:41
nit: remove empty line
Jay Civelli
2017/04/10 19:43:15
Done.
|
| +@Retention(RetentionPolicy.RUNTIME) |
| +@Target(ElementType.METHOD) |
| +public @interface ChildProcessAllocatorSettings { |
| + int sandboxedServiceCount() default -1; |
| + String sandboxedServiceName() default ""; |
| +} |