forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGeckoSystemStateListener.h
58 lines (47 loc) · 1.75 KB
/
GeckoSystemStateListener.h
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
/* -*- Mode: c++; c-basic-offset: 2; tab-width: 20; indent-tabs-mode: nil; -*-
* 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 GeckoSystemStateListener_h
#define GeckoSystemStateListener_h
#include "GeneratedJNINatives.h"
#include "mozilla/Assertions.h"
#include "mozilla/PresShell.h"
#include "mozilla/dom/Document.h"
#include "nsIWindowMediator.h"
#include "nsPIDOMWindow.h"
namespace mozilla {
class GeckoSystemStateListener final
: public java::GeckoSystemStateListener::Natives<GeckoSystemStateListener> {
GeckoSystemStateListener() = delete;
public:
static void OnDeviceChanged() {
MOZ_ASSERT(NS_IsMainThread());
// Iterate all toplevel windows
nsCOMPtr<nsIWindowMediator> windowMediator =
do_GetService(NS_WINDOWMEDIATOR_CONTRACTID);
NS_ENSURE_TRUE_VOID(windowMediator);
nsCOMPtr<nsISimpleEnumerator> windowEnumerator;
windowMediator->GetEnumerator(nullptr, getter_AddRefs(windowEnumerator));
NS_ENSURE_TRUE_VOID(windowEnumerator);
bool more;
while (NS_SUCCEEDED(windowEnumerator->HasMoreElements(&more)) && more) {
nsCOMPtr<nsISupports> elements;
if (NS_FAILED(windowEnumerator->GetNext(getter_AddRefs(elements)))) {
break;
}
if (nsCOMPtr<nsPIDOMWindowOuter> window = do_QueryInterface(elements)) {
if (window->Closed()) {
continue;
}
if (dom::Document* doc = window->GetExtantDoc()) {
if (PresShell* presShell = doc->GetPresShell()) {
presShell->ThemeChanged();
}
}
}
}
}
};
} // namespace mozilla
#endif // GeckoSystemStateListener_h