OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2015 The WebRTC Project Authors. All rights reserved. | 2 * Copyright 2015 The WebRTC Project Authors. All rights reserved. |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
9 */ | 9 */ |
10 | 10 |
11 package org.appspot.apprtc; | 11 package org.appspot.apprtc; |
12 | 12 |
13 import org.appspot.apprtc.AppRTCClient.RoomConnectionParameters; | 13 import org.appspot.apprtc.AppRTCClient.RoomConnectionParameters; |
14 import org.appspot.apprtc.AppRTCClient.SignalingParameters; | 14 import org.appspot.apprtc.AppRTCClient.SignalingParameters; |
15 import org.appspot.apprtc.PeerConnectionClient.PeerConnectionParameters; | 15 import org.appspot.apprtc.PeerConnectionClient.PeerConnectionParameters; |
16 import org.appspot.apprtc.util.LooperExecutor; | 16 import org.appspot.apprtc.util.LooperExecutor; |
17 | 17 |
18 import android.app.Activity; | 18 import android.app.Activity; |
19 import android.app.AlertDialog; | 19 import android.app.AlertDialog; |
20 import android.app.FragmentTransaction; | 20 import android.app.FragmentTransaction; |
21 import android.content.DialogInterface; | 21 import android.content.DialogInterface; |
22 import android.content.Intent; | 22 import android.content.Intent; |
23 import android.content.pm.PackageManager; | 23 import android.content.pm.PackageManager; |
24 import android.net.Uri; | 24 import android.net.Uri; |
25 import android.opengl.GLSurfaceView; | |
26 import android.os.Bundle; | 25 import android.os.Bundle; |
27 import android.os.Handler; | 26 import android.os.Handler; |
28 import android.util.Log; | 27 import android.util.Log; |
29 import android.view.View; | 28 import android.view.View; |
30 import android.view.Window; | 29 import android.view.Window; |
31 import android.view.WindowManager.LayoutParams; | 30 import android.view.WindowManager.LayoutParams; |
32 import android.widget.Toast; | 31 import android.widget.Toast; |
33 | 32 |
34 import org.webrtc.EglBase; | 33 import org.webrtc.EglBase; |
35 import org.webrtc.IceCandidate; | 34 import org.webrtc.IceCandidate; |
(...skipping 605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
641 } | 640 } |
642 } | 641 } |
643 }); | 642 }); |
644 } | 643 } |
645 | 644 |
646 @Override | 645 @Override |
647 public void onPeerConnectionError(final String description) { | 646 public void onPeerConnectionError(final String description) { |
648 reportError(description); | 647 reportError(description); |
649 } | 648 } |
650 } | 649 } |
OLD | NEW |