OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 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 |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 EXPECT_CALL(callback_, | 86 EXPECT_CALL(callback_, |
87 OnCaptureResultPtr(DesktopCapturer::Result::SUCCESS, _)) | 87 OnCaptureResultPtr(DesktopCapturer::Result::SUCCESS, _)) |
88 .Times(2) | 88 .Times(2) |
89 .WillOnce(Invoke(this, &ScreenCapturerMacTest::CaptureDoneCallback1)) | 89 .WillOnce(Invoke(this, &ScreenCapturerMacTest::CaptureDoneCallback1)) |
90 .WillOnce(Invoke(this, &ScreenCapturerMacTest::CaptureDoneCallback2)); | 90 .WillOnce(Invoke(this, &ScreenCapturerMacTest::CaptureDoneCallback2)); |
91 | 91 |
92 SCOPED_TRACE(""); | 92 SCOPED_TRACE(""); |
93 capturer_->Start(&callback_); | 93 capturer_->Start(&callback_); |
94 | 94 |
95 // Check that we get an initial full-screen updated. | 95 // Check that we get an initial full-screen updated. |
96 capturer_->Capture(DesktopRegion()); | 96 capturer_->CaptureFrame(); |
97 | 97 |
98 // Check that subsequent dirty rects are propagated correctly. | 98 // Check that subsequent dirty rects are propagated correctly. |
99 capturer_->Capture(DesktopRegion()); | 99 capturer_->CaptureFrame(); |
100 } | 100 } |
101 | 101 |
102 } // namespace webrtc | 102 } // namespace webrtc |
OLD | NEW |