Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */ |
michael@0 | 2 | /* vim: set ts=2 et sw=2 tw=80: */ |
michael@0 | 3 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 4 | * License, v. 2.0. If a copy of the MPL was not distributed with this file, |
michael@0 | 5 | * You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 6 | |
michael@0 | 7 | #ifndef mozilla_dom_bluetooth_bluetoothpropertyobject_h__ |
michael@0 | 8 | #define mozilla_dom_bluetooth_bluetoothpropertyobject_h__ |
michael@0 | 9 | |
michael@0 | 10 | #include "BluetoothCommon.h" |
michael@0 | 11 | #include "BluetoothReplyRunnable.h" |
michael@0 | 12 | |
michael@0 | 13 | class nsIDOMDOMRequest; |
michael@0 | 14 | class nsPIDOMWindow; |
michael@0 | 15 | |
michael@0 | 16 | namespace mozilla { |
michael@0 | 17 | class ErrorResult; |
michael@0 | 18 | namespace dom { |
michael@0 | 19 | class DOMRequest; |
michael@0 | 20 | } |
michael@0 | 21 | } |
michael@0 | 22 | |
michael@0 | 23 | BEGIN_BLUETOOTH_NAMESPACE |
michael@0 | 24 | |
michael@0 | 25 | class BluetoothNamedValue; |
michael@0 | 26 | |
michael@0 | 27 | class BluetoothPropertyContainer |
michael@0 | 28 | { |
michael@0 | 29 | public: |
michael@0 | 30 | already_AddRefed<mozilla::dom::DOMRequest> |
michael@0 | 31 | FirePropertyAlreadySet(nsPIDOMWindow* aOwner, ErrorResult& aRv); |
michael@0 | 32 | already_AddRefed<mozilla::dom::DOMRequest> |
michael@0 | 33 | SetProperty(nsPIDOMWindow* aOwner, const BluetoothNamedValue& aProperty, |
michael@0 | 34 | ErrorResult& aRv); |
michael@0 | 35 | virtual void SetPropertyByValue(const BluetoothNamedValue& aValue) = 0; |
michael@0 | 36 | nsString GetPath() |
michael@0 | 37 | { |
michael@0 | 38 | return mPath; |
michael@0 | 39 | } |
michael@0 | 40 | |
michael@0 | 41 | // Compatibility with nsRefPtr to make sure we don't hold a weakptr to |
michael@0 | 42 | // ourselves |
michael@0 | 43 | virtual nsrefcnt AddRef() = 0; |
michael@0 | 44 | virtual nsrefcnt Release() = 0; |
michael@0 | 45 | |
michael@0 | 46 | protected: |
michael@0 | 47 | BluetoothPropertyContainer(BluetoothObjectType aType) : |
michael@0 | 48 | mObjectType(aType) |
michael@0 | 49 | {} |
michael@0 | 50 | |
michael@0 | 51 | ~BluetoothPropertyContainer() |
michael@0 | 52 | {} |
michael@0 | 53 | |
michael@0 | 54 | nsString mPath; |
michael@0 | 55 | BluetoothObjectType mObjectType; |
michael@0 | 56 | }; |
michael@0 | 57 | |
michael@0 | 58 | END_BLUETOOTH_NAMESPACE |
michael@0 | 59 | |
michael@0 | 60 | #endif |