Bug 1477919 [wpt PR 12154] - url: DecodeURLEscapeSequences() should not apply UTF...
[gecko.git] / widget / nsDragServiceProxy.h
blob7b4e026161ae04193173c17a646e71e5a9a5c09f
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
3 * This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef NSDRAGSERVICEPROXY_H
7 #define NSDRAGSERVICEPROXY_H
9 #include "nsBaseDragService.h"
11 class nsDragServiceProxy : public nsBaseDragService
13 public:
14 nsDragServiceProxy();
16 NS_INLINE_DECL_REFCOUNTING_INHERITED(nsDragServiceProxy, nsBaseDragService)
18 // nsBaseDragService
19 virtual nsresult InvokeDragSessionImpl(nsIArray* anArrayTransferables,
20 nsIScriptableRegion* aRegion,
21 uint32_t aActionType) override;
22 private:
23 virtual ~nsDragServiceProxy();
26 #endif // NSDRAGSERVICEPROXY_H