Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2014 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.mojo.bindings; | |
| 6 | |
| 7 import org.chromium.mojo.system.MojoException; | |
| 8 | |
| 9 /** | |
| 10 * An {@link ConnectionErrorHandler} is notified of error happening while using the bindings over | |
| 11 * message pipes. | |
|
rmcilroy
2014/07/10 19:03:57
/s/An/A
/s/of error/of an error/
qsr
2014/07/11 11:42:07
Done.
| |
| 12 */ | |
| 13 interface ConnectionErrorHandler { | |
| 14 public void onConnectionError(MojoException e); | |
| 15 } | |
| OLD | NEW |