| Index: content/public/android/java/src/org/chromium/content/browser/ChildProcessConnectionImpl.java
|
| diff --git a/content/public/android/java/src/org/chromium/content/browser/ChildProcessConnectionImpl.java b/content/public/android/java/src/org/chromium/content/browser/ChildProcessConnectionImpl.java
|
| index 4fdcd1cb2f1c0d54e02897e5d63b0233c6c68ccc..f6a0f8e7e82e468279d921c5bb60dee463fda10e 100644
|
| --- a/content/public/android/java/src/org/chromium/content/browser/ChildProcessConnectionImpl.java
|
| +++ b/content/public/android/java/src/org/chromium/content/browser/ChildProcessConnectionImpl.java
|
| @@ -21,7 +21,7 @@ import org.chromium.base.ThreadUtils;
|
| import org.chromium.base.TraceEvent;
|
| import org.chromium.base.VisibleForTesting;
|
| import org.chromium.base.process_launcher.ChildProcessCreationParams;
|
| -import org.chromium.content.common.FileDescriptorInfo;
|
| +import org.chromium.base.process_launcher.FileDescriptorInfo;
|
| import org.chromium.content.common.IChildProcessCallback;
|
| import org.chromium.content.common.IChildProcessService;
|
|
|
| @@ -410,7 +410,7 @@ public class ChildProcessConnectionImpl implements ChildProcessConnection {
|
| // We proactively close the FDs rather than wait for GC & finalizer.
|
| try {
|
| for (FileDescriptorInfo fileInfo : mConnectionParams.mFilesToBeMapped) {
|
| - fileInfo.mFd.close();
|
| + fileInfo.fd.close();
|
| }
|
| } catch (IOException ioe) {
|
| Log.w(TAG, "Failed to close FD.", ioe);
|
|
|