LCOV - code coverage report
Current view: top level - media/webrtc/trunk/webrtc/modules/desktop_capture - mouse_cursor.h (source / functions) Hit Total Coverage
Test: output.info Lines: 0 2 0.0 %
Date: 2017-07-14 16:53:18 Functions: 0 2 0.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /*
       2             :  *  Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
       3             :  *
       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
       6             :  *  tree. An additional intellectual property rights grant can be found
       7             :  *  in the file PATENTS.  All contributing project authors may
       8             :  *  be found in the AUTHORS file in the root of the source tree.
       9             :  */
      10             : 
      11             : #ifndef WEBRTC_MODULES_DESKTOP_CAPTURE_MOUSE_CURSOR_H_
      12             : #define WEBRTC_MODULES_DESKTOP_CAPTURE_MOUSE_CURSOR_H_
      13             : 
      14             : #include <memory>
      15             : 
      16             : #include "webrtc/base/constructormagic.h"
      17             : #include "webrtc/modules/desktop_capture/desktop_geometry.h"
      18             : 
      19             : namespace webrtc {
      20             : 
      21             : class DesktopFrame;
      22             : 
      23             : class MouseCursor {
      24             :  public:
      25             :   MouseCursor();
      26             : 
      27             :   // Takes ownership of |image|. |hotspot| must be within |image| boundaries.
      28             :   MouseCursor(DesktopFrame* image, const DesktopVector& hotspot);
      29             : 
      30             :   ~MouseCursor();
      31             : 
      32             :   static MouseCursor* CopyOf(const MouseCursor& cursor);
      33             : 
      34             :   void set_image(DesktopFrame* image) { image_.reset(image); }
      35           0 :   const DesktopFrame* image() const { return image_.get(); }
      36             : 
      37             :   void set_hotspot(const DesktopVector& hotspot ) { hotspot_ = hotspot; }
      38           0 :   const DesktopVector& hotspot() const { return hotspot_; }
      39             : 
      40             :  private:
      41             :   std::unique_ptr<DesktopFrame> image_;
      42             :   DesktopVector hotspot_;
      43             : 
      44             :   RTC_DISALLOW_COPY_AND_ASSIGN(MouseCursor);
      45             : };
      46             : 
      47             : }  // namespace webrtc
      48             : 
      49             : #endif  // WEBRTC_MODULES_DESKTOP_CAPTURE_MOUSE_CURSOR_H_

Generated by: LCOV version 1.13