| Index: ui/aura/mus/drag_drop_controller_host.h
|
| diff --git a/ui/aura/mus/drag_drop_controller_host.h b/ui/aura/mus/drag_drop_controller_host.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..ba33ad928abe3f7cc4e5cdb52b63dd8a86cdbe4e
|
| --- /dev/null
|
| +++ b/ui/aura/mus/drag_drop_controller_host.h
|
| @@ -0,0 +1,28 @@
|
| +// Copyright 2016 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef UI_AURA_MUS_DRAG_DROP_CONTROLLER_HOST_H_
|
| +#define UI_AURA_MUS_DRAG_DROP_CONTROLLER_HOST_H_
|
| +
|
| +#include <stdint.h>
|
| +
|
| +#include "ui/aura/aura_export.h"
|
| +
|
| +namespace aura {
|
| +
|
| +class WindowMus;
|
| +
|
| +// Used by DragDropControllerMus to create a change id when a drag starts that
|
| +// is sent to ui::mojom::WindowTree.
|
| +class AURA_EXPORT DragDropControllerHost {
|
| + public:
|
| + virtual uint32_t CreateChangeIdForDrag(WindowMus* window) = 0;
|
| +
|
| + protected:
|
| + virtual ~DragDropControllerHost() {}
|
| +};
|
| +
|
| +} // namespace aura
|
| +
|
| +#endif // UI_AURA_MUS_DRAG_DROP_CONTROLLER_HOST_H_
|
|
|