| Index: talk/app/webrtc/java/jni/androidvideocapturer_jni.h | 
| diff --git a/talk/app/webrtc/java/jni/androidvideocapturer_jni.h b/talk/app/webrtc/java/jni/androidvideocapturer_jni.h | 
| index 1e3ace224afd8407fc59b3e9391eb8583a825fbc..ef3e41bfb71bd5137990c40a43e57b8c5eec41b1 100644 | 
| --- a/talk/app/webrtc/java/jni/androidvideocapturer_jni.h | 
| +++ b/talk/app/webrtc/java/jni/androidvideocapturer_jni.h | 
| @@ -64,6 +64,8 @@ class AndroidVideoCapturerJni : public webrtc::AndroidVideoCapturerDelegate { | 
| void OnCapturerStarted(bool success); | 
| void OnIncomingFrame(void* video_frame, | 
| int length, | 
| +                       int width, | 
| +                       int height, | 
| int rotation, | 
| int64 time_stamp); | 
| protected: | 
| @@ -77,6 +79,8 @@ private: | 
| void OnCapturerStopped_w(); | 
| void OnIncomingFrame_w(void* video_frame, | 
| int length, | 
| +                         int width, | 
| +                         int height, | 
| int rotation, | 
| int64 time_stamp); | 
| void ReturnBuffer_w(int64 time_stamp); | 
|  |