| 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 |
| 11 #include <memory> | 11 #include <memory> |
| 12 | 12 |
| 13 #include "webrtc/modules/desktop_capture/screen_capturer.h" | |
| 14 | |
| 15 #include "webrtc/test/gmock.h" | |
| 16 #include "webrtc/test/gtest.h" | |
| 17 #include "webrtc/base/constructormagic.h" | 13 #include "webrtc/base/constructormagic.h" |
| 18 #include "webrtc/base/logging.h" | 14 #include "webrtc/base/logging.h" |
| 15 #include "webrtc/modules/desktop_capture/desktop_capturer.h" |
| 19 #include "webrtc/modules/desktop_capture/desktop_capture_options.h" | 16 #include "webrtc/modules/desktop_capture/desktop_capture_options.h" |
| 20 #include "webrtc/modules/desktop_capture/desktop_frame.h" | 17 #include "webrtc/modules/desktop_capture/desktop_frame.h" |
| 21 #include "webrtc/modules/desktop_capture/desktop_region.h" | 18 #include "webrtc/modules/desktop_capture/desktop_region.h" |
| 22 #include "webrtc/modules/desktop_capture/screen_capturer_mock_objects.h" | 19 #include "webrtc/modules/desktop_capture/screen_capturer_mock_objects.h" |
| 20 #include "webrtc/test/gmock.h" |
| 21 #include "webrtc/test/gtest.h" |
| 23 | 22 |
| 24 #if defined(WEBRTC_WIN) | 23 #if defined(WEBRTC_WIN) |
| 25 #include "webrtc/modules/desktop_capture/win/screen_capturer_win_directx.h" | 24 #include "webrtc/modules/desktop_capture/win/screen_capturer_win_directx.h" |
| 26 #endif // defined(WEBRTC_WIN) | 25 #endif // defined(WEBRTC_WIN) |
| 27 | 26 |
| 28 using ::testing::_; | 27 using ::testing::_; |
| 29 | 28 |
| 30 const int kTestSharedMemoryId = 123; | 29 const int kTestSharedMemoryId = 123; |
| 31 | 30 |
| 32 namespace webrtc { | 31 namespace webrtc { |
| (...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 std::unique_ptr<SharedMemoryFactory>(new FakeSharedMemoryFactory())); | 199 std::unique_ptr<SharedMemoryFactory>(new FakeSharedMemoryFactory())); |
| 201 capturer_->CaptureFrame(); | 200 capturer_->CaptureFrame(); |
| 202 ASSERT_TRUE(frame); | 201 ASSERT_TRUE(frame); |
| 203 ASSERT_TRUE(frame->shared_memory()); | 202 ASSERT_TRUE(frame->shared_memory()); |
| 204 EXPECT_EQ(frame->shared_memory()->id(), kTestSharedMemoryId); | 203 EXPECT_EQ(frame->shared_memory()->id(), kTestSharedMemoryId); |
| 205 } | 204 } |
| 206 | 205 |
| 207 #endif // defined(WEBRTC_WIN) | 206 #endif // defined(WEBRTC_WIN) |
| 208 | 207 |
| 209 } // namespace webrtc | 208 } // namespace webrtc |
| OLD | NEW |