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

Unified Diff: remoting/android/java/src/org/chromium/chromoting/jni/ConnectionListener.java

Issue 1987163002: Add DOMAIN_MISMATCH message end to end (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add TODO in Jingle session Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | remoting/base/chromoting_event.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/android/java/src/org/chromium/chromoting/jni/ConnectionListener.java
diff --git a/remoting/android/java/src/org/chromium/chromoting/jni/ConnectionListener.java b/remoting/android/java/src/org/chromium/chromoting/jni/ConnectionListener.java
index f1575cd70c5e1add9ad488a85c81f31634b65f3b..0de0e19c3139e86fdacd909509dc775f77a81110 100644
--- a/remoting/android/java/src/org/chromium/chromoting/jni/ConnectionListener.java
+++ b/remoting/android/java/src/org/chromium/chromoting/jni/ConnectionListener.java
@@ -43,13 +43,14 @@ public interface ConnectionListener {
SESSION_REJECTED(2, R.string.error_invalid_access_code),
INCOMPATIBLE_PROTOCOL(3, R.string.error_incompatible_protocol),
AUTHENTICATION_FAILED(4, R.string.error_invalid_access_code),
- CHANNEL_CONNECTION_ERROR(5, R.string.error_p2p_failure),
- SIGNALING_ERROR(6, R.string.error_p2p_failure),
- SIGNALING_TIMEOUT(7, R.string.error_p2p_failure),
- HOST_OVERLOAD(8, R.string.error_host_overload),
- MAX_SESSION_LENGTH(9, R.string.error_max_session_length),
- HOST_CONFIGURATION_ERROR(10, R.string.error_host_configuration_error),
- UNKNOWN_ERROR(11, R.string.error_unexpected);
+ INVALID_ACCOUNT(5, R.string.error_invalid_account),
+ CHANNEL_CONNECTION_ERROR(6, R.string.error_p2p_failure),
+ SIGNALING_ERROR(7, R.string.error_p2p_failure),
+ SIGNALING_TIMEOUT(8, R.string.error_p2p_failure),
+ HOST_OVERLOAD(9, R.string.error_host_overload),
+ MAX_SESSION_LENGTH(10, R.string.error_max_session_length),
+ HOST_CONFIGURATION_ERROR(11, R.string.error_host_configuration_error),
+ UNKNOWN_ERROR(12, R.string.error_unexpected);
private final int mValue;
private final int mMessage;
« no previous file with comments | « no previous file | remoting/base/chromoting_event.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698