Commit 9ec5273f authored by dmaclach@chromium.org's avatar dmaclach@chromium.org

Fix up the define usage so that we actually handle OSX specific stuff correctly.

BUG=none
TEST=none

Review URL: http://codereview.chromium.org/2784001

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@49341 0039d316-1c4b-4281-b951-d872f2087c98
parent 68e801f5
......@@ -32,7 +32,7 @@
#elif defined(OS_LINUX)
#include "remoting/host/capturer_linux.h"
#include "remoting/host/event_executor_linux.h"
#elif defined(OS_MAC)
#elif defined(OS_MACOSX)
#include "remoting/host/capturer_mac.h"
#include "remoting/host/event_executor_mac.h"
#endif
......@@ -92,7 +92,7 @@ int main(int argc, char** argv) {
#elif defined(OS_LINUX)
capturer.reset(new remoting::CapturerLinux());
executor.reset(new remoting::EventExecutorLinux());
#elif defined(OS_MAC)
#elif defined(OS_MACOSX)
capturer.reset(new remoting::CapturerMac());
executor.reset(new remoting::EventExecutorMac());
#endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment