draggable_region.h 488 B

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