Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /* vim:expandtab:shiftwidth=4:tabstop=4:
3 */
4 /* This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
8 #ifndef nsAppShell_h__
9 #define nsAppShell_h__
11 #include <glib.h>
12 #include "nsBaseAppShell.h"
13 #include "nsCOMPtr.h"
15 class nsAppShell : public nsBaseAppShell {
16 public:
17 nsAppShell() : mTag(0) {
18 mPipeFDs[0] = mPipeFDs[1] = 0;
19 }
21 // nsBaseAppShell overrides:
22 nsresult Init();
23 virtual void ScheduleNativeEventCallback();
24 virtual bool ProcessNextNativeEvent(bool mayWait);
26 private:
27 virtual ~nsAppShell();
29 static gboolean EventProcessorCallback(GIOChannel *source,
30 GIOCondition condition,
31 gpointer data);
33 int mPipeFDs[2];
34 unsigned mTag;
35 };
37 #endif /* nsAppShell_h__ */