mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:30:27 +00:00
3dc3bde9f2
- Bug 524674, nsIEventListenerService: tracking of dynamically added and removed event listeners, r=masayuki (a1779bcaf)
- Bug 418986 - Resist fingerprinting by preventing exposure of screen and system info. r=mrbkap, r=heycam (97710708a)
- bug 1171785 create nsContentUtils::RunInStableState helper r=bholley (c71678a0e)
- bug 1172377 change RunInStableState API to receive ownership of nsIRunnable r=roc (3d5c72cac)
- bug 1171785 use nsContentUtils::RunInStableState() r=bholley (1c0acca87)
- Bug 1172784 (part 1) - Remove unused argument from UnmarkGrayJSListenersInCCGenerationDocuments(). r=mccr8. (a3a26ec9f)
- Bug 1172784 (part 2) - Remove PL_DHashTableEnumerate use from nsContentUtils. r=mccr8. (792b83f8e)
- Bug 1171832 - Remove PL_DHashTableEnumerator use from nsDocument. r=smaug. (eb265bb3a)
- Bug 819090 - Convert nsRefMapEntry::mRefContentList to nsTArray. r=froydnj (509060d38)
- Bug 819090 - Convert BroadcasterMapEntry::mListeners to nsTArray. r=froydnj (6b1bd7232)
- Bug 819090 - Convert nsDocument::mIdContentList to nsTArray. r=froydnj (41ebb3a64)
- Bug 819090 - Remove nsVoidArray.{cpp,h}. r=froydnj (6038b4fc7)
- Bug 1199143 - Inline heavyweight functions. r=shu (798a24e44)
- bug 1150136 - rel=preconnect from html parser r=hsivonen (1a078efcb)
- Bug 1135812 - Make picture element react to viewport changes. r=dbaron,johns (4b405d69c)
- add missing testcase (cb6c04747)
194 lines
4.5 KiB
C++
194 lines
4.5 KiB
C++
/* -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 2; -*- */
|
|
/* vim: set sw=4 ts=8 et tw=80 : */
|
|
/* 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/. */
|
|
|
|
#include "mozilla/unused.h"
|
|
#include "nsIAppShell.h"
|
|
#include "nsScreenManagerProxy.h"
|
|
#include "nsServiceManagerUtils.h"
|
|
#include "nsWidgetsCID.h"
|
|
#include "ScreenProxy.h"
|
|
|
|
namespace mozilla {
|
|
namespace widget {
|
|
|
|
using namespace mozilla::dom;
|
|
|
|
static NS_DEFINE_CID(kAppShellCID, NS_APPSHELL_CID);
|
|
|
|
ScreenProxy::ScreenProxy(nsScreenManagerProxy* aScreenManager, ScreenDetails aDetails)
|
|
: mScreenManager(aScreenManager)
|
|
, mCacheValid(false)
|
|
, mCacheWillInvalidate(false)
|
|
{
|
|
PopulateByDetails(aDetails);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
ScreenProxy::GetId(uint32_t *outId)
|
|
{
|
|
*outId = mId;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
ScreenProxy::GetRect(int32_t *outLeft,
|
|
int32_t *outTop,
|
|
int32_t *outWidth,
|
|
int32_t *outHeight)
|
|
{
|
|
if (!EnsureCacheIsValid()) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
*outLeft = mRect.x;
|
|
*outTop = mRect.y;
|
|
*outWidth = mRect.width;
|
|
*outHeight = mRect.height;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
ScreenProxy::GetRectDisplayPix(int32_t *outLeft,
|
|
int32_t *outTop,
|
|
int32_t *outWidth,
|
|
int32_t *outHeight)
|
|
{
|
|
if (!EnsureCacheIsValid()) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
*outLeft = mRectDisplayPix.x;
|
|
*outTop = mRectDisplayPix.y;
|
|
*outWidth = mRectDisplayPix.width;
|
|
*outHeight = mRectDisplayPix.height;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
ScreenProxy::GetAvailRect(int32_t *outLeft,
|
|
int32_t *outTop,
|
|
int32_t *outWidth,
|
|
int32_t *outHeight)
|
|
{
|
|
if (!EnsureCacheIsValid()) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
*outLeft = mAvailRect.x;
|
|
*outTop = mAvailRect.y;
|
|
*outWidth = mAvailRect.width;
|
|
*outHeight = mAvailRect.height;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
ScreenProxy::GetAvailRectDisplayPix(int32_t *outLeft,
|
|
int32_t *outTop,
|
|
int32_t *outWidth,
|
|
int32_t *outHeight)
|
|
{
|
|
if (!EnsureCacheIsValid()) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
*outLeft = mAvailRectDisplayPix.x;
|
|
*outTop = mAvailRectDisplayPix.y;
|
|
*outWidth = mAvailRectDisplayPix.width;
|
|
*outHeight = mAvailRectDisplayPix.height;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
ScreenProxy::GetPixelDepth(int32_t *aPixelDepth)
|
|
{
|
|
if (!EnsureCacheIsValid()) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
*aPixelDepth = mPixelDepth;
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
ScreenProxy::GetColorDepth(int32_t *aColorDepth)
|
|
{
|
|
if (!EnsureCacheIsValid()) {
|
|
return NS_ERROR_FAILURE;
|
|
}
|
|
|
|
*aColorDepth = mColorDepth;
|
|
return NS_OK;
|
|
}
|
|
|
|
void
|
|
ScreenProxy::PopulateByDetails(ScreenDetails aDetails)
|
|
{
|
|
mId = aDetails.id();
|
|
mRect = nsIntRect(aDetails.rect());
|
|
mRectDisplayPix = nsIntRect(aDetails.rectDisplayPix());
|
|
mAvailRect = nsIntRect(aDetails.availRect());
|
|
mAvailRectDisplayPix = nsIntRect(aDetails.availRectDisplayPix());
|
|
mPixelDepth = aDetails.pixelDepth();
|
|
mColorDepth = aDetails.colorDepth();
|
|
mContentsScaleFactor = aDetails.contentsScaleFactor();
|
|
}
|
|
|
|
bool
|
|
ScreenProxy::EnsureCacheIsValid()
|
|
{
|
|
if (mCacheValid) {
|
|
return true;
|
|
}
|
|
|
|
bool success = false;
|
|
// Kick off a synchronous IPC call to the parent to get the
|
|
// most up-to-date information.
|
|
ScreenDetails details;
|
|
unused << mScreenManager->SendScreenRefresh(mId, &details, &success);
|
|
if (!success) {
|
|
NS_WARNING("Updating a ScreenProxy in the child process failed on parent side.");
|
|
return false;
|
|
}
|
|
|
|
PopulateByDetails(details);
|
|
mCacheValid = true;
|
|
|
|
InvalidateCacheOnNextTick();
|
|
return true;
|
|
}
|
|
|
|
void
|
|
ScreenProxy::InvalidateCacheOnNextTick()
|
|
{
|
|
if (mCacheWillInvalidate) {
|
|
return;
|
|
}
|
|
|
|
mCacheWillInvalidate = true;
|
|
|
|
nsCOMPtr<nsIAppShell> appShell = do_GetService(kAppShellCID);
|
|
if (appShell) {
|
|
nsCOMPtr<nsIRunnable> r =
|
|
NS_NewRunnableMethod(this, &ScreenProxy::InvalidateCache);
|
|
appShell->RunInStableState(r.forget());
|
|
} else {
|
|
// It's pretty bad news if we can't get the appshell. In that case,
|
|
// let's just invalidate the cache right away.
|
|
InvalidateCache();
|
|
}
|
|
}
|
|
|
|
void
|
|
ScreenProxy::InvalidateCache()
|
|
{
|
|
mCacheValid = false;
|
|
mCacheWillInvalidate = false;
|
|
}
|
|
|
|
} // namespace widget
|
|
} // namespace mozilla
|
|
|