Bug 1477919 [wpt PR 12154] - url: DecodeURLEscapeSequences() should not apply UTF...
[gecko.git] / widget / PuppetBidiKeyboard.h
blob403b3248adf348a64d640fdea18301d7f495065f
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 #ifndef mozilla_widget_PuppetBidiKeyboard_h_
9 #define mozilla_widget_PuppetBidiKeyboard_h_
11 #include "nsIBidiKeyboard.h"
13 namespace mozilla {
14 namespace widget {
16 class PuppetBidiKeyboard final : public nsIBidiKeyboard
18 public:
19 NS_DECL_ISUPPORTS
20 NS_DECL_NSIBIDIKEYBOARD
22 PuppetBidiKeyboard();
24 void SetBidiKeyboardInfo(bool aIsLangRTL, bool aHaveBidiKeyboards);
26 private:
27 ~PuppetBidiKeyboard();
29 bool mIsLangRTL;
30 bool mHaveBidiKeyboards;
33 } // namespace widget
34 } // namespace mozilla
36 #endif // mozilla_widget_PuppetBidiKeyboard_h_