EMMA Coverage Report (generated Fri Aug 23 16:39:17 PDT 2013) |
---|
[all classes][org.chromium.content.browser] |
name | class, % | method, % | block, % | line, % |
---|---|---|---|---|
FileDescriptorInfo.java | 100% (1/1) | 100% (1/1) | 100% (12/12) | 100% (5/5) |
name | class, % | method, % | block, % | line, % |
---|---|---|---|---|
class FileDescriptorInfo | 100% (1/1) | 100% (1/1) | 100% (12/12) | 100% (5/5) |
FileDescriptorInfo (int, int, boolean): void | 100% (1/1) | 100% (12/12) | 100% (5/5) |
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 | } |
[all classes][org.chromium.content.browser] |
EMMA 2.0.5312 (C) Vladimir Roubtsov |