Bug 1444460 [wpt PR 9948] - gyroscope: Rename LocalCoordinateSystem to GyroscopeLocal...
[gecko.git] / widget / nsBaseScreen.cpp
blob33017e0a230cd5179497e638a5894d3405c72578
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
2 * vim: sw=2 ts=8 et :
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 #define MOZ_FATAL_ASSERTIONS_FOR_THREAD_SAFETY
10 #include "nsBaseScreen.h"
12 NS_IMPL_ISUPPORTS(nsBaseScreen, nsIScreen)
14 nsBaseScreen::nsBaseScreen()
18 nsBaseScreen::~nsBaseScreen() { }
20 NS_IMETHODIMP
21 nsBaseScreen::GetRectDisplayPix(int32_t *outLeft, int32_t *outTop,
22 int32_t *outWidth, int32_t *outHeight)
24 return GetRect(outLeft, outTop, outWidth, outHeight);
27 NS_IMETHODIMP
28 nsBaseScreen::GetAvailRectDisplayPix(int32_t *outLeft, int32_t *outTop,
29 int32_t *outWidth, int32_t *outHeight)
31 return GetAvailRect(outLeft, outTop, outWidth, outHeight);
34 NS_IMETHODIMP
35 nsBaseScreen::GetContentsScaleFactor(double* aContentsScaleFactor)
37 *aContentsScaleFactor = 1.0;
38 return NS_OK;
41 NS_IMETHODIMP
42 nsBaseScreen::GetDefaultCSSScaleFactor(double* aScaleFactor)
44 *aScaleFactor = 1.0;
45 return NS_OK;
48 NS_IMETHODIMP
49 nsBaseScreen::GetDpi(float* aDPI)
51 *aDPI = 96;
52 return NS_OK;