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

Unified Diff: remoting/host/shaped_desktop_capturer_unittest.cc

Issue 1827043004: Remove shaped desktop support from remoting host and client. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/host/shaped_desktop_capturer.cc ('k') | remoting/proto/video.proto » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/shaped_desktop_capturer_unittest.cc
diff --git a/remoting/host/shaped_desktop_capturer_unittest.cc b/remoting/host/shaped_desktop_capturer_unittest.cc
deleted file mode 100644
index 942f93057b7948cf1e2f5337507c84698b1e055f..0000000000000000000000000000000000000000
--- a/remoting/host/shaped_desktop_capturer_unittest.cc
+++ /dev/null
@@ -1,66 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "remoting/host/shaped_desktop_capturer.h"
-
-#include <stddef.h>
-
-#include "remoting/host/desktop_shape_tracker.h"
-#include "remoting/protocol/fake_desktop_capturer.h"
-#include "testing/gtest/include/gtest/gtest.h"
-#include "third_party/webrtc/modules/desktop_capture/desktop_frame.h"
-#include "third_party/webrtc/modules/desktop_capture/desktop_geometry.h"
-#include "third_party/webrtc/modules/desktop_capture/desktop_region.h"
-
-namespace remoting {
-
-class FakeDesktopShapeTracker : public DesktopShapeTracker {
- public:
- FakeDesktopShapeTracker() {}
- ~FakeDesktopShapeTracker() override {}
-
- static webrtc::DesktopRegion CreateShape() {
- webrtc::DesktopRegion result;
- result.AddRect(webrtc::DesktopRect::MakeXYWH(0, 0, 5, 5));
- result.AddRect(webrtc::DesktopRect::MakeXYWH(5, 5, 5, 5));
- return result;
- }
-
- void RefreshDesktopShape() override { shape_ = CreateShape(); }
-
- const webrtc::DesktopRegion& desktop_shape() override {
- // desktop_shape() can't be called before RefreshDesktopShape().
- EXPECT_FALSE(shape_.is_empty());
- return shape_;
- }
-
- private:
- webrtc::DesktopRegion shape_;
-};
-
-class ShapedDesktopCapturerTest : public testing::Test,
- public webrtc::DesktopCapturer::Callback {
- public:
- // webrtc::DesktopCapturer::Callback interface
- void OnCaptureCompleted(webrtc::DesktopFrame* frame) override {
- last_frame_.reset(frame);
- }
-
- scoped_ptr<webrtc::DesktopFrame> last_frame_;
-};
-
-// Verify that captured frame have shape.
-TEST_F(ShapedDesktopCapturerTest, Basic) {
- ShapedDesktopCapturer capturer(
- make_scoped_ptr(new protocol::FakeDesktopCapturer()),
- make_scoped_ptr(new FakeDesktopShapeTracker()));
- capturer.Start(this);
- capturer.Capture(webrtc::DesktopRegion());
- ASSERT_TRUE(last_frame_.get());
- ASSERT_TRUE(last_frame_->shape());
- EXPECT_TRUE(
- FakeDesktopShapeTracker::CreateShape().Equals(*last_frame_->shape()));
-}
-
-} // namespace remoting
« no previous file with comments | « remoting/host/shaped_desktop_capturer.cc ('k') | remoting/proto/video.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698