File: StaticPrefListBegin.h

package info (click to toggle)
firefox 145.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,653,344 kB
  • sloc: cpp: 7,594,932; javascript: 6,459,612; ansic: 3,752,905; python: 1,403,433; xml: 629,811; asm: 438,677; java: 186,421; sh: 67,287; makefile: 19,169; objc: 13,086; perl: 12,982; yacc: 4,583; cs: 3,846; pascal: 3,448; lex: 1,720; ruby: 1,003; exp: 762; php: 436; lisp: 258; awk: 247; sql: 66; sed: 54; csh: 10
file content (50 lines) | stat: -rw-r--r-- 2,965 bytes parent folder | download | duplicates (13)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/* -*- 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/. */

// This file does not make sense on its own. It must be #included along with
// StaticPrefsListEnd.h in all headers that contribute prefs to the StaticPrefs
// namespace.

#include "StaticPrefsBase.h"
#include "Preferences.h"
#include "MainThreadUtils.h"  // for NS_IsMainThread()
#include "nsXULAppAPI.h"      // for XRE_IsContentProcess()

namespace mozilla {
namespace StaticPrefs {

// For mirrored prefs we generate an extern variable declaration and three
// getter declarations/definitions.
#define NEVER_PREF(name, cpp_type, default_value)
#define ALWAYS_PREF(name, base_id, full_id, cpp_type, default_value)          \
  extern cpp_type sMirror_##full_id;                                          \
  inline StripAtomic<cpp_type> full_id() {                                    \
    MOZ_DIAGNOSTIC_ASSERT(IsAtomic<cpp_type>::value || NS_IsMainThread(),     \
                          "Non-atomic static pref '" name                     \
                          "' being accessed on background thread by getter"); \
    return sMirror_##full_id;                                                 \
  }                                                                           \
  inline const char* GetPrefName_##base_id() { return name; }                 \
  inline StripAtomic<cpp_type> GetPrefDefault_##base_id() {                   \
    return default_value;                                                     \
  }
#define ALWAYS_DATAMUTEX_PREF(name, base_id, full_id, cpp_type, default_value) \
  extern cpp_type sMirror_##full_id;                                           \
  inline cpp_type::ConstAutoLock full_id() {                                   \
    return sMirror_##full_id.ConstLock();                                      \
  }                                                                            \
  inline const char* GetPrefName_##base_id() { return name; }                  \
  inline StripAtomic<cpp_type> GetPrefDefault_##base_id() {                    \
    return default_value;                                                      \
  }
#define ONCE_PREF(name, base_id, full_id, cpp_type, default_value) \
  extern cpp_type sMirror_##full_id;                               \
  inline cpp_type full_id() {                                      \
    MaybeInitOncePrefs();                                          \
    return sMirror_##full_id;                                      \
  }                                                                \
  inline const char* GetPrefName_##base_id() { return name; }      \
  inline cpp_type GetPrefDefault_##base_id() { return default_value; }