Bug 1861709 replace AudioCallbackDriver::ThreadRunning() assertions that mean to...
[gecko.git] / widget / windows / nsAppShell.h
blob20ea65e834592b121eb62f3ce176baa0e8f06dd2
1 /* -*- Mode: c++; tab-width: 2; indent-tabs-mode: nil; -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef nsAppShell_h__
7 #define nsAppShell_h__
9 #include "nsBaseAppShell.h"
10 #include <windows.h>
11 #include <vector>
12 #include "mozilla/TimeStamp.h"
13 #include "mozilla/Mutex.h"
15 // The maximum time we allow before forcing a native event callback.
16 // In seconds.
17 #define NATIVE_EVENT_STARVATION_LIMIT 1
19 /**
20 * Native Win32 Application shell wrapper
22 class nsAppShell final : public nsBaseAppShell {
23 public:
24 nsAppShell()
25 : mEventWnd(nullptr),
26 mNativeCallbackPending(false),
27 mLastNativeEventScheduledMutex(
28 "nsAppShell::mLastNativeEventScheduledMutex") {}
29 typedef mozilla::TimeStamp TimeStamp;
30 typedef mozilla::Mutex Mutex;
32 nsresult Init();
33 void DoProcessMoreGeckoEvents();
35 static UINT GetTaskbarButtonCreatedMessage();
37 NS_IMETHOD AfterProcessNextEvent(nsIThreadInternal* thread,
38 bool eventWasProcessed) final;
40 protected:
41 NS_IMETHOD Run() override;
42 NS_IMETHOD Observe(nsISupports* aSubject, const char* aTopic,
43 const char16_t* aData) override;
45 virtual void ScheduleNativeEventCallback();
46 virtual bool ProcessNextNativeEvent(bool mayWait);
47 virtual ~nsAppShell();
49 static LRESULT CALLBACK EventWindowProc(HWND, UINT, WPARAM, LPARAM);
51 protected:
52 nsresult InitHiddenWindow();
53 HWND mEventWnd;
54 bool mNativeCallbackPending;
56 Mutex mLastNativeEventScheduledMutex MOZ_UNANNOTATED;
57 TimeStamp mLastNativeEventScheduled;
58 std::vector<MSG> mMsgsToRepost;
60 private:
61 wchar_t mTimezoneName[128];
64 #endif // nsAppShell_h__