2011-08-05 11:36:51 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2011-08-05 11:36:51 -07:00
|
|
|
|
|
|
|
#ifndef nsCocoaFeatures_h_
|
|
|
|
#define nsCocoaFeatures_h_
|
|
|
|
|
2012-10-18 12:55:48 -07:00
|
|
|
#include "mozilla/StandardInteger.h"
|
2011-08-05 11:36:51 -07:00
|
|
|
|
|
|
|
class nsCocoaFeatures {
|
|
|
|
public:
|
2012-08-22 08:56:38 -07:00
|
|
|
static int32_t OSXVersion();
|
2012-01-09 16:11:04 -08:00
|
|
|
static bool OnLionOrLater();
|
2012-12-16 14:39:29 -08:00
|
|
|
static bool OnMountainLionOrLater();
|
2012-05-16 19:13:02 -07:00
|
|
|
static bool SupportCoreAnimationPlugins();
|
2012-05-17 00:53:20 -07:00
|
|
|
|
2011-08-05 11:36:51 -07:00
|
|
|
private:
|
2012-08-22 08:56:38 -07:00
|
|
|
static int32_t mOSXVersion;
|
2011-08-05 11:36:51 -07:00
|
|
|
};
|
|
|
|
#endif // nsCocoaFeatures_h_
|