draggable_region.h 454 B

12345678910111213141516171819202122
  1. // Copyright (c) 2012 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by the MIT license that can be
  3. // found in the LICENSE file.
  4. #ifndef ATOM_COMMON_DRAGGABLE_REGION_H_
  5. #define ATOM_COMMON_DRAGGABLE_REGION_H_
  6. #include "ui/gfx/geometry/rect.h"
  7. namespace atom {
  8. struct DraggableRegion {
  9. bool draggable;
  10. gfx::Rect bounds;
  11. DraggableRegion();
  12. };
  13. } // namespace atom
  14. #endif // ATOM_COMMON_DRAGGABLE_REGION_H_