BUG=2787, 2824 TESTED=MacBook Pro Retina with an external monitor; verified changing display configuration while capturing; add/remove monitor while capturing; verified cursor position. R=sergeyu@chromium.org Review URL: https://webrtc-codereview.appspot.com/7479004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@5471 4adac7df-926f-26a2-2b94-8c16560cd09d
17 lines
529 B
C++
17 lines
529 B
C++
/*
|
|
* Copyright (c) 2014 The WebRTC project authors. All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license
|
|
* that can be found in the LICENSE file in the root of the source
|
|
* tree. An additional intellectual property rights grant can be found
|
|
* in the file PATENTS. All contributing project authors may
|
|
* be found in the AUTHORS file in the root of the source tree.
|
|
*/
|
|
|
|
namespace webrtc {
|
|
|
|
// Returns true if the OS version >= OSX 10.7.
|
|
bool IsOSLionOrLater();
|
|
|
|
} // namespace webrtc
|