blob: c212a520345ddb27261f2af5d03821d9f0880335 [file] [log] [blame]
// Copyright 2018 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.
#ifndef BASE_ANDROID_CHILD_PROCESS_BINDING_TYPES_H_
#define BASE_ANDROID_CHILD_PROCESS_BINDING_TYPES_H_
namespace base {
namespace android {
// Defines the state of bindgings with child process. See ChildProcessConnection
// to see what the bindings are.
// GENERATED_JAVA_ENUM_PACKAGE: org.chromium.base
enum class ChildBindingState { UNBOUND, WAIVED, MODERATE, STRONG };
} // namespace android
} // namespace base
#endif // BASE_ANDROID_CHILD_PROCESS_BINDING_TYPES_H_