• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 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 class FileDescriptorInfo {
8     public int mId;
9     public int mFd;
10     public boolean mAutoClose;
11 
FileDescriptorInfo(int id, int fd, boolean autoClose)12     FileDescriptorInfo(int id, int fd, boolean autoClose) {
13         mId = id;
14         mFd = fd;
15         mAutoClose = autoClose;
16     }
17 }