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

Unified Diff: remoting/host/capturer_mac_unittest.cc

Issue 2840036: Moving Encoder and Decoder to remoting/base (Closed)
Patch Set: fix DEPS Created 10 years, 5 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_mac.cc ('k') | remoting/host/chromoting_host.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/capturer_mac_unittest.cc
diff --git a/remoting/host/capturer_mac_unittest.cc b/remoting/host/capturer_mac_unittest.cc
index e59a0bb62dad57a02e54e4f5a9a870d8b6f03d8c..a172b1584af043f2dad1fde5bd53d775322b86e3 100644
--- a/remoting/host/capturer_mac_unittest.cc
+++ b/remoting/host/capturer_mac_unittest.cc
@@ -28,7 +28,7 @@ class CapturerMacTest : public testing::Test {
class CapturerCallback {
public:
explicit CapturerCallback(const RectVector& rects) : rects_(rects) { }
- void CaptureDoneCallback(scoped_refptr<Capturer::CaptureData> capture_data);
+ void CaptureDoneCallback(scoped_refptr<CaptureData> capture_data);
protected:
RectVector rects_;
@@ -38,7 +38,7 @@ class CapturerCallback {
};
void CapturerCallback::CaptureDoneCallback(
- scoped_refptr<Capturer::CaptureData> capture_data) {
+ scoped_refptr<CaptureData> capture_data) {
CGDirectDisplayID mainDevice = CGMainDisplayID();
int width = CGDisplayPixelsWide(mainDevice);
int height = CGDisplayPixelsHigh(mainDevice);
@@ -46,7 +46,7 @@ void CapturerCallback::CaptureDoneCallback(
EXPECT_EQ(rects_, capture_data->dirty_rects());
EXPECT_EQ(width, capture_data->width());
EXPECT_EQ(height, capture_data->height());
- const Capturer::DataPlanes &planes = capture_data->data_planes();
+ const DataPlanes &planes = capture_data->data_planes();
EXPECT_TRUE(planes.data[0] != NULL);
EXPECT_TRUE(planes.data[1] == NULL);
EXPECT_TRUE(planes.data[2] == NULL);
« no previous file with comments | « remoting/host/capturer_mac.cc ('k') | remoting/host/chromoting_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698