fune/layout/style/StylePrefs.h
Cameron McCormack 99c87da38a Bug 1418217 - Move visited links pref to StylePrefs. r=TYLin
On a CLOSED TREE to fix Servo bustage.

MozReview-Commit-ID: HLukaX0EFFv
2017-11-17 14:08:22 +01:00

31 lines
919 B
C++

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* 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/. */
/* A namespace class for style system prefs */
#ifndef mozilla_StylePrefs_h
#define mozilla_StylePrefs_h
namespace mozilla {
struct StylePrefs
{
static bool sFontDisplayEnabled;
static bool sOpentypeSVGEnabled;
static bool sWebkitPrefixedAliasesEnabled;
static bool sWebkitDevicePixelRatioEnabled;
static bool sMozGradientsEnabled;
static bool sControlCharVisibility;
static bool sFramesTimingFunctionEnabled;
static bool sUnprefixedFullscreenApiEnabled;
static bool sVisitedLinksEnabled;
static void Init();
};
} // namespace mozilla
#endif // mozilla_StylePrefs_h