Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(124)

Side by Side Diff: mojo/bindings/java/src/org/chromium/mojo/bindings/ConnectionErrorHandler.java

Issue 371603003: Adding a router class to handle messages that expect responses. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix rebasing Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698