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

Unified Diff: remoting/host/capturer_linux.cc

Issue 5382008: Refactor ZLib and Verbatim encoders. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 10 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 side-by-side diff with in-line comments
Download patch
Index: remoting/host/capturer_linux.cc
diff --git a/remoting/host/capturer_linux.cc b/remoting/host/capturer_linux.cc
index 70c956d32e41484c332685d6ccaa4c9e75809b9f..f18af5a3f56d5f48119e6349233bcfd8efbd1d8d 100644
--- a/remoting/host/capturer_linux.cc
+++ b/remoting/host/capturer_linux.cc
@@ -210,7 +210,7 @@ void CapturerLinuxPimpl::CalculateInvalidRects() {
gfx::Rect damage_rect(event->area.x, event->area.y, event->area.width,
event->area.height);
invalid_rects.insert(damage_rect);
- VLOG(3) << "Damage receved for rect at ("
+ LOG(WARNING) << "Damage receved for rect at ("
garykac 2010/12/02 19:51:31 received
<< damage_rect.x() << "," << damage_rect.y() << ") size ("
<< damage_rect.width() << "," << damage_rect.height() << ")";
}
@@ -221,7 +221,7 @@ void CapturerLinuxPimpl::CalculateInvalidRects() {
if (capture_fullscreen_) {
capturer_->InvalidateFullScreen();
- capture_fullscreen_ = false;
+ // capture_fullscreen_ = false;
Alpha Left Google 2010/12/02 19:39:55 commented out code?
garykac 2010/12/02 19:51:31 Why is this commented out? Does it need a TODO?
Sergey Ulanov 2010/12/03 00:17:21 This wasn't meant to be part of this CL (Linux cap
} else {
capturer_->InvalidateRects(invalid_rects);
}

Powered by Google App Engine
This is Rietveld 408576698