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

Unified Diff: remoting/host/capturer_helper.h

Issue 7491070: Switch over to using SkRegions to calculate dirty areas. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cleaned up comments Created 9 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
Index: remoting/host/capturer_helper.h
diff --git a/remoting/host/capturer_helper.h b/remoting/host/capturer_helper.h
index b7650c0fbf1e4696e061d1ebd5f02948eb2f44ba..931bebe1ce506ccd9496d2153c5b293bbbc55b92 100644
--- a/remoting/host/capturer_helper.h
+++ b/remoting/host/capturer_helper.h
@@ -6,24 +6,24 @@
#define REMOTING_HOST_CAPTURER_HELPER_H_
#include "base/synchronization/lock.h"
-#include "remoting/base/types.h"
+#include "third_party/skia/include/core/SkRegion.h"
+#include "ui/gfx/size.h"
namespace remoting {
// CapturerHelper is intended to be used by an implementation of the Capturer
-// interface. It maintains a thread-safe list of invalid rectangles, and the
-// size of the most recently captured screen, on behalf of the Capturer that
-// owns it.
+// interface. It maintains a thread-safe invalid region, and the size of the
+// most recently captured screen, on behalf of the Capturer that owns it.
class CapturerHelper {
public:
CapturerHelper();
~CapturerHelper();
- // Clear out the list of invalid rects.
- void ClearInvalidRects();
+ // Clear out the invalid region.
+ void ClearInvalidRegion();
- // Invalidate the specified screen rects.
- void InvalidateRects(const InvalidRects& inval_rects);
+ // Invalidate the specified region.
+ void InvalidateRegion(const SkRegion& inval_region);
Wez 2011/08/10 22:05:43 |inval_region|
// Invalidate the entire screen, of a given size.
void InvalidateScreen(const gfx::Size& size);
@@ -35,29 +35,21 @@ class CapturerHelper {
// Whether the invalid region is a full screen of a given size.
bool IsCaptureFullScreen(const gfx::Size& size);
- // Swap the given set of rects with the stored invalid rects.
- // This should be used like this:
- //
- // InvalidRects inval_rects;
- // common.SwapInvalidRects(inval_rects);
- //
- // This passes the invalid rects to the caller, and removes them from this
- // object. The caller should then pass the raster data in those rects to the
- // client.
- void SwapInvalidRects(InvalidRects& inval_rects);
+ // Swap the given region with the stored invalid region.
+ void SwapInvalidRegion(SkRegion* inval_region);
Wez 2011/08/10 22:05:43 |inval_region|
// Access the size of the most recently captured screen.
const gfx::Size& size_most_recent() const;
void set_size_most_recent(const gfx::Size& size);
private:
- // Rects that have been manually invalidated (through InvalidateRect).
- // These will be returned as dirty_rects in the capture data during the next
+ // A region that has been manually invalidated (through InvalidateRegion).
+ // These will be returned as dirty_region in the capture data during the next
// capture.
- InvalidRects inval_rects_;
+ SkRegion invalid_region_;
- // A lock protecting |inval_rects_| across threads.
- base::Lock inval_rects_lock_;
+ // A lock protecting |inval_region_| across threads.
+ base::Lock invalid_region_lock_;
// The size of the most recently captured screen.
gfx::Size size_most_recent_;

Powered by Google App Engine
This is Rietveld 408576698