| OLD | NEW | 
|---|
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be | 
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. | 
| 4 | 4 | 
| 5 package org.chromium.mojo.application; | 5 package org.chromium.mojo.application; | 
| 6 | 6 | 
| 7 import org.chromium.mojo.bindings.InterfaceRequest; | 7 import org.chromium.mojo.bindings.InterfaceRequest; | 
| 8 import org.chromium.mojo.system.Core; | 8 import org.chromium.mojo.system.Core; | 
| 9 import org.chromium.mojo.system.MessagePipeHandle; | 9 import org.chromium.mojo.system.MessagePipeHandle; | 
| 10 import org.chromium.mojo.system.MojoException; | 10 import org.chromium.mojo.system.MojoException; | 
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 62     @Override | 62     @Override | 
| 63     public void close() { | 63     public void close() { | 
| 64         if (mShell != null) { | 64         if (mShell != null) { | 
| 65             mShell.close(); | 65             mShell.close(); | 
| 66         } | 66         } | 
| 67     } | 67     } | 
| 68 | 68 | 
| 69     @Override | 69     @Override | 
| 70     public void onConnectionError(MojoException e) {} | 70     public void onConnectionError(MojoException e) {} | 
| 71 } | 71 } | 
| OLD | NEW | 
|---|