2010-06-04 00:56:36 +04:00
|
|
|
/* -*- Mode: c++; tab-width: 40; indent-tabs-mode: nil; c-basic-offset: 4; -*- */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* 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/. */
|
2010-06-04 00:56:36 +04:00
|
|
|
|
|
|
|
#ifndef nsAppShell_h__
|
|
|
|
#define nsAppShell_h__
|
|
|
|
|
Rollup of bug 645263 and bug 646259: Switch to mozilla:: sync primitives. r=cjones,dbaron,doublec,ehsan src=bsmedberg
Bug 645263, part 0: Count sync primitive ctor/dtors. r=dbaron
Bug 645263, part 1: Migrate content/media to mozilla:: sync primitives. r=doublec
Bug 645263, part 2: Migrate modules/plugin to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 3: Migrate nsComponentManagerImpl to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 4: Migrate everything else to mozilla:: sync primitives. r=dbaron
Bug 645263, part 5: Remove nsAutoLock.*. sr=bsmedberg
Bug 645263, part 6: Make editor test be nicer to deadlock detector. r=ehsan
Bug 645263, part 7: Disable tracemalloc backtraces for xpcshell tests. r=dbaron
Bug 646259: Fix nsCacheService to use a CondVar for notifying. r=cjones
2011-04-01 08:29:02 +04:00
|
|
|
#include "mozilla/CondVar.h"
|
|
|
|
#include "mozilla/Mutex.h"
|
2010-06-04 00:56:36 +04:00
|
|
|
#include "nsBaseAppShell.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsTArray.h"
|
2010-06-15 06:17:37 +04:00
|
|
|
#include "nsInterfaceHashtable.h"
|
2012-02-17 22:52:26 +04:00
|
|
|
#include "nsIAndroidBridge.h"
|
2010-06-04 00:56:36 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
class AndroidGeckoEvent;
|
|
|
|
bool ProcessNextEvent();
|
|
|
|
void NotifyEvent();
|
|
|
|
}
|
|
|
|
|
2011-08-09 20:08:19 +04:00
|
|
|
class nsWindow;
|
|
|
|
|
2010-06-04 00:56:36 +04:00
|
|
|
class nsAppShell :
|
|
|
|
public nsBaseAppShell
|
|
|
|
{
|
Rollup of bug 645263 and bug 646259: Switch to mozilla:: sync primitives. r=cjones,dbaron,doublec,ehsan src=bsmedberg
Bug 645263, part 0: Count sync primitive ctor/dtors. r=dbaron
Bug 645263, part 1: Migrate content/media to mozilla:: sync primitives. r=doublec
Bug 645263, part 2: Migrate modules/plugin to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 3: Migrate nsComponentManagerImpl to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 4: Migrate everything else to mozilla:: sync primitives. r=dbaron
Bug 645263, part 5: Remove nsAutoLock.*. sr=bsmedberg
Bug 645263, part 6: Make editor test be nicer to deadlock detector. r=ehsan
Bug 645263, part 7: Disable tracemalloc backtraces for xpcshell tests. r=dbaron
Bug 646259: Fix nsCacheService to use a CondVar for notifying. r=cjones
2011-04-01 08:29:02 +04:00
|
|
|
typedef mozilla::CondVar CondVar;
|
|
|
|
typedef mozilla::Mutex Mutex;
|
|
|
|
|
2010-06-04 00:56:36 +04:00
|
|
|
public:
|
|
|
|
static nsAppShell *gAppShell;
|
|
|
|
static mozilla::AndroidGeckoEvent *gEarlyEvent;
|
|
|
|
|
|
|
|
nsAppShell();
|
|
|
|
|
2010-12-22 00:28:45 +03:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_NSIOBSERVER
|
|
|
|
|
2010-06-04 00:56:36 +04:00
|
|
|
nsresult Init();
|
|
|
|
|
|
|
|
void NotifyNativeEvent();
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
virtual bool ProcessNextNativeEvent(bool mayWait);
|
2010-06-04 00:56:36 +04:00
|
|
|
|
|
|
|
void PostEvent(mozilla::AndroidGeckoEvent *event);
|
2011-02-02 09:34:12 +03:00
|
|
|
void OnResume();
|
2010-06-22 19:22:31 +04:00
|
|
|
|
2010-06-15 06:17:37 +04:00
|
|
|
nsresult AddObserver(const nsAString &aObserverKey, nsIObserver *aObserver);
|
2011-08-09 20:08:19 +04:00
|
|
|
void ResendLastResizeEvent(nsWindow* aDest);
|
2010-06-15 06:17:37 +04:00
|
|
|
|
2012-02-17 22:52:26 +04:00
|
|
|
void SetBrowserApp(nsIAndroidBrowserApp* aBrowserApp) {
|
|
|
|
mBrowserApp = aBrowserApp;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GetBrowserApp(nsIAndroidBrowserApp* *aBrowserApp) {
|
|
|
|
*aBrowserApp = mBrowserApp;
|
|
|
|
}
|
|
|
|
|
2010-06-04 00:56:36 +04:00
|
|
|
protected:
|
|
|
|
virtual void ScheduleNativeEventCallback();
|
|
|
|
virtual ~nsAppShell();
|
|
|
|
|
Rollup of bug 645263 and bug 646259: Switch to mozilla:: sync primitives. r=cjones,dbaron,doublec,ehsan src=bsmedberg
Bug 645263, part 0: Count sync primitive ctor/dtors. r=dbaron
Bug 645263, part 1: Migrate content/media to mozilla:: sync primitives. r=doublec
Bug 645263, part 2: Migrate modules/plugin to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 3: Migrate nsComponentManagerImpl to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 4: Migrate everything else to mozilla:: sync primitives. r=dbaron
Bug 645263, part 5: Remove nsAutoLock.*. sr=bsmedberg
Bug 645263, part 6: Make editor test be nicer to deadlock detector. r=ehsan
Bug 645263, part 7: Disable tracemalloc backtraces for xpcshell tests. r=dbaron
Bug 646259: Fix nsCacheService to use a CondVar for notifying. r=cjones
2011-04-01 08:29:02 +04:00
|
|
|
Mutex mQueueLock;
|
|
|
|
Mutex mCondLock;
|
|
|
|
CondVar mQueueCond;
|
2012-04-08 08:50:42 +04:00
|
|
|
mozilla::AndroidGeckoEvent *mQueuedViewportEvent;
|
2012-08-09 23:54:36 +04:00
|
|
|
bool mAllowCoalescingTouches;
|
2010-06-04 00:56:36 +04:00
|
|
|
nsTArray<mozilla::AndroidGeckoEvent *> mEventQueue;
|
2010-06-15 06:17:37 +04:00
|
|
|
nsInterfaceHashtable<nsStringHashKey, nsIObserver> mObserversHash;
|
2010-06-04 00:56:36 +04:00
|
|
|
|
2011-12-03 09:13:16 +04:00
|
|
|
mozilla::AndroidGeckoEvent *PopNextEvent();
|
2010-06-04 00:56:36 +04:00
|
|
|
mozilla::AndroidGeckoEvent *PeekNextEvent();
|
2012-02-17 22:52:26 +04:00
|
|
|
|
|
|
|
nsCOMPtr<nsIAndroidBrowserApp> mBrowserApp;
|
2010-06-04 00:56:36 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsAppShell_h__
|
|
|
|
|