Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(88)

Side by Side Diff: remoting/host/shaped_desktop_capturer_unittest.cc

Issue 1462063004: Move VideoFramePump to remoting/protocol (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « remoting/host/ipc_desktop_environment_unittest.cc ('k') | remoting/host/video_frame_pump.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « remoting/host/ipc_desktop_environment_unittest.cc ('k') | remoting/host/video_frame_pump.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698