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

Unified Diff: remoting/host/capturer.cc

Issue 2745006: Implement a chromoting client using X11 (Closed)
Patch Set: removed all.gyp Created 10 years, 6 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/capturer.h ('k') | remoting/host/capturer_fake.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/capturer.cc
diff --git a/remoting/host/capturer.cc b/remoting/host/capturer.cc
index 2f92d18aa83ccb4f5a77533f7da983645017e248..789723ba6619c9f3b1f07cd83b63801fe582b9e4 100644
--- a/remoting/host/capturer.cc
+++ b/remoting/host/capturer.cc
@@ -9,7 +9,7 @@ namespace remoting {
Capturer::Capturer()
: width_(0),
height_(0),
- pixel_format_(chromotocol_pb::PixelFormatInvalid),
+ pixel_format_(PixelFormatInvalid),
bytes_per_pixel_(0),
bytes_per_row_(0),
current_buffer_(0) {
@@ -30,7 +30,7 @@ int Capturer::GetHeight() const {
return height_;
}
-chromotocol_pb::PixelFormat Capturer::GetPixelFormat() const {
+PixelFormat Capturer::GetPixelFormat() const {
return pixel_format_;
}
« no previous file with comments | « remoting/host/capturer.h ('k') | remoting/host/capturer_fake.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698