Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | /* -*- Mode: C++; tab-width: 40; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ |
michael@0 | 2 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 3 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 4 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 5 | |
michael@0 | 6 | #ifndef nsScreenManagerAndroid_h___ |
michael@0 | 7 | #define nsScreenManagerAndroid_h___ |
michael@0 | 8 | |
michael@0 | 9 | #include "nsCOMPtr.h" |
michael@0 | 10 | |
michael@0 | 11 | #include "nsBaseScreen.h" |
michael@0 | 12 | #include "nsIScreenManager.h" |
michael@0 | 13 | #include "WidgetUtils.h" |
michael@0 | 14 | |
michael@0 | 15 | class nsScreenAndroid MOZ_FINAL : public nsBaseScreen |
michael@0 | 16 | { |
michael@0 | 17 | public: |
michael@0 | 18 | nsScreenAndroid(void *nativeScreen); |
michael@0 | 19 | ~nsScreenAndroid(); |
michael@0 | 20 | |
michael@0 | 21 | NS_IMETHOD GetRect(int32_t* aLeft, int32_t* aTop, int32_t* aWidth, int32_t* aHeight); |
michael@0 | 22 | NS_IMETHOD GetAvailRect(int32_t* aLeft, int32_t* aTop, int32_t* aWidth, int32_t* aHeight); |
michael@0 | 23 | NS_IMETHOD GetPixelDepth(int32_t* aPixelDepth); |
michael@0 | 24 | NS_IMETHOD GetColorDepth(int32_t* aColorDepth); |
michael@0 | 25 | |
michael@0 | 26 | protected: |
michael@0 | 27 | virtual void ApplyMinimumBrightness(uint32_t aBrightness) MOZ_OVERRIDE; |
michael@0 | 28 | }; |
michael@0 | 29 | |
michael@0 | 30 | class nsScreenManagerAndroid MOZ_FINAL : public nsIScreenManager |
michael@0 | 31 | { |
michael@0 | 32 | public: |
michael@0 | 33 | nsScreenManagerAndroid(); |
michael@0 | 34 | ~nsScreenManagerAndroid(); |
michael@0 | 35 | |
michael@0 | 36 | NS_DECL_ISUPPORTS |
michael@0 | 37 | NS_DECL_NSISCREENMANAGER |
michael@0 | 38 | |
michael@0 | 39 | protected: |
michael@0 | 40 | nsCOMPtr<nsIScreen> mOneScreen; |
michael@0 | 41 | }; |
michael@0 | 42 | |
michael@0 | 43 | #endif /* nsScreenManagerAndroid_h___ */ |