- add sources.
[platform/framework/web/crosswalk.git] / src / content / public / android / java / src / org / chromium / content / browser / FileDescriptorInfo.java
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
5 package org.chromium.content.browser;
6
7 import org.chromium.base.CalledByNative;
8 import org.chromium.base.JNINamespace;
9
10 class FileDescriptorInfo {
11     public int mId;
12     public int mFd;
13     public boolean mAutoClose;
14
15     FileDescriptorInfo(int id, int fd, boolean autoClose) {
16         mId = id;
17         mFd = fd;
18         mAutoClose = autoClose;
19     }
20 }