| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "remoting/host/shaped_desktop_capturer.h" | 5 #include "remoting/host/shaped_desktop_capturer.h" |
| 6 | 6 |
| 7 #include "remoting/host/desktop_shape_tracker.h" | 7 #include "remoting/host/desktop_shape_tracker.h" |
| 8 #include "remoting/host/fake_desktop_capturer.h" | 8 #include "remoting/protocol/fake_desktop_capturer.h" |
| 9 #include "testing/gtest/include/gtest/gtest.h" | 9 #include "testing/gtest/include/gtest/gtest.h" |
| 10 #include "third_party/webrtc/modules/desktop_capture/desktop_frame.h" | 10 #include "third_party/webrtc/modules/desktop_capture/desktop_frame.h" |
| 11 #include "third_party/webrtc/modules/desktop_capture/desktop_geometry.h" | 11 #include "third_party/webrtc/modules/desktop_capture/desktop_geometry.h" |
| 12 #include "third_party/webrtc/modules/desktop_capture/desktop_region.h" | 12 #include "third_party/webrtc/modules/desktop_capture/desktop_region.h" |
| 13 | 13 |
| 14 namespace remoting { | 14 namespace remoting { |
| 15 | 15 |
| 16 class FakeDesktopShapeTracker : public DesktopShapeTracker { | 16 class FakeDesktopShapeTracker : public DesktopShapeTracker { |
| 17 public: | 17 public: |
| 18 FakeDesktopShapeTracker() {} | 18 FakeDesktopShapeTracker() {} |
| (...skipping 29 matching lines...) Expand all Loading... |
| 48 void OnCaptureCompleted(webrtc::DesktopFrame* frame) override { | 48 void OnCaptureCompleted(webrtc::DesktopFrame* frame) override { |
| 49 last_frame_.reset(frame); | 49 last_frame_.reset(frame); |
| 50 } | 50 } |
| 51 | 51 |
| 52 scoped_ptr<webrtc::DesktopFrame> last_frame_; | 52 scoped_ptr<webrtc::DesktopFrame> last_frame_; |
| 53 }; | 53 }; |
| 54 | 54 |
| 55 // Verify that captured frame have shape. | 55 // Verify that captured frame have shape. |
| 56 TEST_F(ShapedDesktopCapturerTest, Basic) { | 56 TEST_F(ShapedDesktopCapturerTest, Basic) { |
| 57 ShapedDesktopCapturer capturer( | 57 ShapedDesktopCapturer capturer( |
| 58 make_scoped_ptr(new FakeDesktopCapturer()), | 58 make_scoped_ptr(new protocol::FakeDesktopCapturer()), |
| 59 make_scoped_ptr(new FakeDesktopShapeTracker())); | 59 make_scoped_ptr(new FakeDesktopShapeTracker())); |
| 60 capturer.Start(this); | 60 capturer.Start(this); |
| 61 capturer.Capture(webrtc::DesktopRegion()); | 61 capturer.Capture(webrtc::DesktopRegion()); |
| 62 ASSERT_TRUE(last_frame_.get()); | 62 ASSERT_TRUE(last_frame_.get()); |
| 63 ASSERT_TRUE(last_frame_->shape()); | 63 ASSERT_TRUE(last_frame_->shape()); |
| 64 EXPECT_TRUE( | 64 EXPECT_TRUE( |
| 65 FakeDesktopShapeTracker::CreateShape().Equals(*last_frame_->shape())); | 65 FakeDesktopShapeTracker::CreateShape().Equals(*last_frame_->shape())); |
| 66 } | 66 } |
| 67 | 67 |
| 68 } // namespace remoting | 68 } // namespace remoting |
| OLD | NEW |