blob: ea997c2f486bfe037c2b531e4bbbe19fd6215ac3 (
plain)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set sw=2 ts=8 et ft=cpp : */
/* 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/. */
#ifndef mozilla_HalInternal_h
#define mozilla_HalInternal_h 1
/*
* This file is included by HalImpl.h and HalSandbox.h with a mechanism similar
* to Hal.h. That means those headers set MOZ_HAL_NAMESPACE to specify in which
* namespace the internal functions should appear.
*
* The difference between Hal.h and HalInternal.h is that methods declared in
* HalInternal.h don't appear in the hal namespace. That also means this file
* should not be included except by HalImpl.h and HalSandbox.h.
*/
#ifndef MOZ_HAL_NAMESPACE
# error "You shouldn't directly include HalInternal.h!"
#endif
namespace mozilla {
namespace MOZ_HAL_NAMESPACE {
/**
* Enables battery notifications from the backend.
*/
void EnableBatteryNotifications();
/**
* Disables battery notifications from the backend.
*/
void DisableBatteryNotifications();
/**
* Enables network notifications from the backend.
*/
void EnableNetworkNotifications();
/**
* Disables network notifications from the backend.
*/
void DisableNetworkNotifications();
/**
* Enables screen orientation notifications from the backend.
*/
void EnableScreenConfigurationNotifications();
/**
* Disables screen orientation notifications from the backend.
*/
void DisableScreenConfigurationNotifications();
/**
* Enable alarm notifications from the backend.
*/
MOZ_MUST_USE bool EnableAlarm();
/**
* Disable alarm notifications from the backend.
*/
void DisableAlarm();
/**
* Enable system clock change notifications from the backend.
*/
void EnableSystemClockChangeNotifications();
/**
* Disable system clock change notifications from the backend.
*/
void DisableSystemClockChangeNotifications();
/**
* Enable system timezone change notifications from the backend.
*/
void EnableSystemTimezoneChangeNotifications();
/**
* Disable system timezone change notifications from the backend.
*/
void DisableSystemTimezoneChangeNotifications();
/**
* Has the child-side HAL IPC object been destroyed? If so, you shouldn't send
* messages to hal_sandbox.
*/
bool HalChildDestroyed();
} // namespace MOZ_HAL_NAMESPACE
} // namespace mozilla
#endif // mozilla_HalInternal_h
|