mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
aad5b35ad2
--HG-- extra : rebase_source : 070a9902f23d8b47e48ac0f972213815f8e4302c
28 lines
839 B
C++
28 lines
839 B
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
*
|
|
* 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();
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
// nsIDragService
|
|
NS_IMETHOD InvokeDragSession(nsIDOMNode* aDOMNode,
|
|
nsISupportsArray* anArrayTransferables,
|
|
nsIScriptableRegion* aRegion,
|
|
uint32_t aActionType) override;
|
|
private:
|
|
virtual ~nsDragServiceProxy();
|
|
};
|
|
|
|
#endif // NSDRAGSERVICEPROXY_H
|