2010-06-03 13:56:36 -07:00
|
|
|
/* -*- Mode: c++; tab-width: 40; indent-tabs-mode: nil; c-basic-offset: 4; -*- */
|
2012-05-21 04:12:37 -07: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-03 13:56:36 -07: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-03-31 21:29:02 -07:00
|
|
|
#include "mozilla/CondVar.h"
|
|
|
|
#include "mozilla/Mutex.h"
|
2010-06-03 13:56:36 -07:00
|
|
|
#include "nsBaseAppShell.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsTArray.h"
|
2010-06-14 19:17:37 -07:00
|
|
|
#include "nsInterfaceHashtable.h"
|
2012-02-17 10:52:26 -08:00
|
|
|
#include "nsIAndroidBridge.h"
|
2010-06-03 13:56:36 -07:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
class AndroidGeckoEvent;
|
|
|
|
bool ProcessNextEvent();
|
|
|
|
void NotifyEvent();
|
|
|
|
}
|
|
|
|
|
2011-08-09 09:08:19 -07:00
|
|
|
class nsWindow;
|
|
|
|
|
2010-06-03 13:56:36 -07: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-03-31 21:29:02 -07:00
|
|
|
typedef mozilla::CondVar CondVar;
|
|
|
|
typedef mozilla::Mutex Mutex;
|
|
|
|
|
2010-06-03 13:56:36 -07:00
|
|
|
public:
|
|
|
|
static nsAppShell *gAppShell;
|
|
|
|
static mozilla::AndroidGeckoEvent *gEarlyEvent;
|
|
|
|
|
|
|
|
nsAppShell();
|
|
|
|
|
2010-12-21 13:28:45 -08:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_NSIOBSERVER
|
|
|
|
|
2010-06-03 13:56:36 -07:00
|
|
|
nsresult Init();
|
|
|
|
|
|
|
|
void NotifyNativeEvent();
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
virtual bool ProcessNextNativeEvent(bool mayWait);
|
2010-06-03 13:56:36 -07:00
|
|
|
|
|
|
|
void PostEvent(mozilla::AndroidGeckoEvent *event);
|
2011-02-01 22:34:12 -08:00
|
|
|
void OnResume();
|
2010-06-22 08:22:31 -07:00
|
|
|
|
2010-06-14 19:17:37 -07:00
|
|
|
nsresult AddObserver(const nsAString &aObserverKey, nsIObserver *aObserver);
|
2011-08-09 09:08:19 -07:00
|
|
|
void ResendLastResizeEvent(nsWindow* aDest);
|
2010-06-14 19:17:37 -07:00
|
|
|
|
2012-02-17 10:52:26 -08:00
|
|
|
void SetBrowserApp(nsIAndroidBrowserApp* aBrowserApp) {
|
|
|
|
mBrowserApp = aBrowserApp;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GetBrowserApp(nsIAndroidBrowserApp* *aBrowserApp) {
|
|
|
|
*aBrowserApp = mBrowserApp;
|
|
|
|
}
|
|
|
|
|
2010-06-03 13:56:36 -07: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-03-31 21:29:02 -07:00
|
|
|
Mutex mQueueLock;
|
|
|
|
Mutex mCondLock;
|
|
|
|
CondVar mQueueCond;
|
2012-04-07 21:50:42 -07:00
|
|
|
mozilla::AndroidGeckoEvent *mQueuedDrawEvent;
|
|
|
|
mozilla::AndroidGeckoEvent *mQueuedViewportEvent;
|
2012-04-10 07:27:04 -07:00
|
|
|
bool mAllowCoalescingNextDraw;
|
2012-08-09 12:54:36 -07:00
|
|
|
bool mAllowCoalescingTouches;
|
2010-06-03 13:56:36 -07:00
|
|
|
nsTArray<mozilla::AndroidGeckoEvent *> mEventQueue;
|
2010-06-14 19:17:37 -07:00
|
|
|
nsInterfaceHashtable<nsStringHashKey, nsIObserver> mObserversHash;
|
2010-06-03 13:56:36 -07:00
|
|
|
|
2011-12-02 21:13:16 -08:00
|
|
|
mozilla::AndroidGeckoEvent *PopNextEvent();
|
2010-06-03 13:56:36 -07:00
|
|
|
mozilla::AndroidGeckoEvent *PeekNextEvent();
|
2012-02-17 10:52:26 -08:00
|
|
|
|
|
|
|
nsCOMPtr<nsIAndroidBrowserApp> mBrowserApp;
|
2010-06-03 13:56:36 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsAppShell_h__
|
|
|
|
|