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

Unified Diff: remoting/host/shaped_desktop_capturer.h

Issue 455073004: Switch DesktopEnvironment to return a DesktopCapturer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove ShapedDesktopCapturer::Create() Created 6 years, 4 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/ipc_video_frame_capturer.cc ('k') | remoting/host/shaped_desktop_capturer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/shaped_desktop_capturer.h
diff --git a/remoting/host/shaped_desktop_capturer.h b/remoting/host/shaped_desktop_capturer.h
new file mode 100644
index 0000000000000000000000000000000000000000..8653e91243bad3224cfab58af1d5504cbd85d84a
--- /dev/null
+++ b/remoting/host/shaped_desktop_capturer.h
@@ -0,0 +1,41 @@
+// Copyright 2013 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.
+
+#ifndef REMOTING_HOST_SHAPED_DESKTOP_CAPTURER_H_
+#define REMOTING_HOST_SHAPED_DESKTOP_CAPTURER_H_
+
+#include "base/memory/scoped_ptr.h"
+#include "third_party/webrtc/modules/desktop_capture/desktop_capturer.h"
+
+namespace remoting {
+
+class DesktopShapeTracker;
+
+// Screen capturer that also captures desktop shape.
+class ShapedDesktopCapturer : public webrtc::DesktopCapturer,
+ public webrtc::DesktopCapturer::Callback {
+ public:
+ ShapedDesktopCapturer(scoped_ptr<webrtc::DesktopCapturer> screen_capturer,
+ scoped_ptr<DesktopShapeTracker> shape_tracker);
+ virtual ~ShapedDesktopCapturer();
+
+ // webrtc::DesktopCapturer interface.
+ virtual void Start(webrtc::DesktopCapturer::Callback* callback) OVERRIDE;
+ virtual void Capture(const webrtc::DesktopRegion& region) OVERRIDE;
+
+ private:
+ // webrtc::DesktopCapturer::Callback interface.
+ virtual webrtc::SharedMemory* CreateSharedMemory(size_t size) OVERRIDE;
+ virtual void OnCaptureCompleted(webrtc::DesktopFrame* frame) OVERRIDE;
+
+ scoped_ptr<webrtc::DesktopCapturer> desktop_capturer_;
+ scoped_ptr<DesktopShapeTracker> shape_tracker_;
+ webrtc::DesktopCapturer::Callback* callback_;
+
+ DISALLOW_COPY_AND_ASSIGN(ShapedDesktopCapturer);
+};
+
+} // namespace remoting
+
+#endif // REMOTING_HOST_SHAPED_DESKTOP_CAPTURER_H_
« no previous file with comments | « remoting/host/ipc_video_frame_capturer.cc ('k') | remoting/host/shaped_desktop_capturer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698