FileDescriptorInfo.java revision f2477e01787aa58f445919b809d89e252beef54f
1// Copyright (c) 2012 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5package org.chromium.content.browser;
6
7class FileDescriptorInfo {
8    public int mId;
9    public int mFd;
10    public boolean mAutoClose;
11
12    FileDescriptorInfo(int id, int fd, boolean autoClose) {
13        mId = id;
14        mFd = fd;
15        mAutoClose = autoClose;
16    }
17}