2018-11-30 22:52:05 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
2015-04-08 21:48:11 +03:00
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#ifndef NSDRAGSERVICEPROXY_H
|
|
|
|
#define NSDRAGSERVICEPROXY_H
|
|
|
|
|
|
|
|
#include "nsBaseDragService.h"
|
|
|
|
|
|
|
|
class nsDragServiceProxy : public nsBaseDragService {
|
|
|
|
public:
|
|
|
|
nsDragServiceProxy();
|
|
|
|
|
2018-02-12 23:44:40 +03:00
|
|
|
NS_INLINE_DECL_REFCOUNTING_INHERITED(nsDragServiceProxy, nsBaseDragService)
|
2015-04-08 21:48:11 +03:00
|
|
|
|
2015-10-21 12:16:40 +03:00
|
|
|
// nsBaseDragService
|
2016-10-18 21:56:20 +03:00
|
|
|
virtual nsresult InvokeDragSessionImpl(
|
|
|
|
nsIArray* anArrayTransferables,
|
2018-08-07 16:32:08 +03:00
|
|
|
const mozilla::Maybe<mozilla::CSSIntRegion>& aRegion,
|
2015-10-21 12:16:40 +03:00
|
|
|
uint32_t aActionType) override;
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2015-04-08 21:48:11 +03:00
|
|
|
private:
|
|
|
|
virtual ~nsDragServiceProxy();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // NSDRAGSERVICEPROXY_H
|