Chromium Code Reviews| Index: talk/app/webrtc/java/testcommon/src/org/webrtc/PeerConnectionTest.java |
| diff --git a/talk/app/webrtc/java/testcommon/src/org/webrtc/PeerConnectionTest.java b/talk/app/webrtc/java/testcommon/src/org/webrtc/PeerConnectionTest.java |
| index e7b24b17ba649c3e3988b997d890c457c76d80bb..9f16b8a6627f7672b58e0728aadece96633d28aa 100644 |
| --- a/talk/app/webrtc/java/testcommon/src/org/webrtc/PeerConnectionTest.java |
| +++ b/talk/app/webrtc/java/testcommon/src/org/webrtc/PeerConnectionTest.java |
| @@ -138,12 +138,6 @@ public class PeerConnectionTest { |
| --expectedFramesDelivered; |
| } |
| - // TODO(guoweis): Remove this once chrome code base is updated. |
| - @Override |
| - public boolean canApplyRotation() { |
| - return false; |
| - } |
| - |
|
guoweis_webrtc
2015/08/24 14:07:35
will frame come to this class be handled correctly
magjed_webrtc
2015/08/24 14:18:25
You can see the renderFrame() implementation right
|
| public synchronized void expectSignalingChange(SignalingState newState) { |
| expectedSignalingChanges.add(newState); |
| } |
| @@ -454,12 +448,6 @@ public class PeerConnectionTest { |
| public void renderFrame(VideoRenderer.I420Frame frame) { |
| ++numFramesDelivered; |
| } |
| - |
| - // TODO(guoweis): Remove this once chrome code base is updated. |
| - @Override |
| - public boolean canApplyRotation() { |
| - return false; |
| - } |
| } |
| private static VideoRenderer createVideoRenderer( |