blob: 96c34d4b524eff2b1cb01ad3eddf9575b9ea1a10 (
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
|
/* -*- Mode: C++; tab-width: 40; indent-tabs-mode: nil; c-basic-offset: 2 -*-
* vim: ts=4 sw=2 expandtab:
* 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 ScreenHelperAndroid_h___
#define ScreenHelperAndroid_h___
#include "mozilla/widget/ScreenManager.h"
#include "nsDataHashtable.h"
namespace mozilla {
namespace widget {
class ScreenHelperAndroid final : public ScreenManager::Helper {
public:
class ScreenHelperSupport;
ScreenHelperAndroid();
~ScreenHelperAndroid();
static ScreenHelperAndroid* GetSingleton();
void Refresh();
void AddScreen(uint32_t aScreenId, DisplayType aDisplayType,
LayoutDeviceIntRect aRect = LayoutDeviceIntRect(),
float aDensity = 1.0f);
void RemoveScreen(uint32_t aId);
already_AddRefed<Screen> ScreenForId(uint32_t aScreenId);
private:
nsDataHashtable<nsUint32HashKey, RefPtr<Screen>> mScreens;
};
} // namespace widget
} // namespace mozilla
#endif /* ScreenHelperAndroid_h___ */
|