From 90b9b08332aac3664e4ec308151711029b01f442 Mon Sep 17 00:00:00 2001 From: "jiayl@webrtc.org" Date: Wed, 12 Nov 2014 20:53:00 +0000 Subject: [PATCH] Fix a platform check to use WEBRTC_WIN instead of OS_WIN. BUG=4006 R=wez@chromium.org Review URL: https://webrtc-codereview.appspot.com/25169004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@7691 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/modules/desktop_capture/cropping_window_capturer.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webrtc/modules/desktop_capture/cropping_window_capturer.cc b/webrtc/modules/desktop_capture/cropping_window_capturer.cc index f78b26b04..6b824e8fa 100644 --- a/webrtc/modules/desktop_capture/cropping_window_capturer.cc +++ b/webrtc/modules/desktop_capture/cropping_window_capturer.cc @@ -100,7 +100,7 @@ void CroppingWindowCapturer::OnCaptureCompleted(DesktopFrame* frame) { callback_->OnCaptureCompleted(window_frame.release()); } -#if !defined(OS_WIN) +#if !defined(WEBRTC_WIN) // static WindowCapturer* CroppingWindowCapturer::Create(const DesktopCaptureOptions& options) {