| Index: talk/app/webrtc/java/src/org/webrtc/VideoCapturerAndroid.java | 
| diff --git a/talk/app/webrtc/java/src/org/webrtc/VideoCapturerAndroid.java b/talk/app/webrtc/java/src/org/webrtc/VideoCapturerAndroid.java | 
| index ac42883e98cc7fbf8432e9aa4b30078aeb7b1704..66853f226e4bc72e19016f1d49aaced5cc22d719 100644 | 
| --- a/talk/app/webrtc/java/src/org/webrtc/VideoCapturerAndroid.java | 
| +++ b/talk/app/webrtc/java/src/org/webrtc/VideoCapturerAndroid.java | 
| @@ -295,6 +295,12 @@ public class VideoCapturerAndroid extends VideoCapturer implements PreviewCallba | 
| return supportedFormats.get(id); | 
| } | 
|  | 
| +  // Return a list of timestamps for the frames that have been sent out, but not returned yet. | 
| +  // Useful for logging and testing. | 
| +  public String pendingFramesTimeStamps() { | 
| +    return videoBuffers.pendingFramesTimeStamps(); | 
| +  } | 
| + | 
| private VideoCapturerAndroid() { | 
| Log.d(TAG, "VideoCapturerAndroid"); | 
| } | 
|  |