1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/dom/interfaces/base/nsITabParent.idl Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,25 @@ 1.4 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.5 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.6 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.7 + 1.8 + 1.9 +#include "domstubs.idl" 1.10 + 1.11 +[scriptable, uuid(33e8571d-5e5d-4000-81cf-e01f5f85d424)] 1.12 +interface nsITabParent : nsISupports 1.13 +{ 1.14 + void injectTouchEvent(in AString aType, 1.15 + [array, size_is(count)] in uint32_t aIdentifiers, 1.16 + [array, size_is(count)] in int32_t aXs, 1.17 + [array, size_is(count)] in int32_t aYs, 1.18 + [array, size_is(count)] in uint32_t aRxs, 1.19 + [array, size_is(count)] in uint32_t aRys, 1.20 + [array, size_is(count)] in float aRotationAngles, 1.21 + [array, size_is(count)] in float aForces, 1.22 + in uint32_t count, 1.23 + in long aModifiers); 1.24 + 1.25 + readonly attribute boolean useAsyncPanZoom; 1.26 + 1.27 + void setIsDocShellActive(in bool aIsActive); 1.28 +};