// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "ui/aura/client/drag_drop_client.h" #include "ui/aura/window.h" #include "ui/base/class_property.h" DEFINE_UI_CLASS_PROPERTY_TYPE(…) namespace aura { namespace client { DEFINE_UI_CLASS_PROPERTY_KEY(…) void SetDragDropClient(Window* root_window, DragDropClient* client) { … } DragDropClient* GetDragDropClient(Window* root_window) { … } } // namespace client } // namespace aura