Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9314)

Unified Diff: chrome/common/extensions/draggable_region.h

Issue 10822004: Draggable region support for frameless app window on Windows. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix per feedback Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/common/extensions/draggable_region.h
diff --git a/chrome/common/extensions/draggable_region.h b/chrome/common/extensions/draggable_region.h
new file mode 100644
index 0000000000000000000000000000000000000000..e8e1daa1faeeb9ebffc798ecf588e90c3d396619
--- /dev/null
+++ b/chrome/common/extensions/draggable_region.h
@@ -0,0 +1,20 @@
+// Copyright (c) 2012 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 CHROME_COMMON_EXTENSIONS_DRAGGABLE_REGION_H_
+#define CHROME_COMMON_EXTENSIONS_DRAGGABLE_REGION_H_
+
+#include "ui/gfx/rect.h"
+
+namespace extensions {
+
+struct DraggableRegion {
+ std::string label;
+ gfx::Rect bounds;
+ gfx::Rect clip;
+};
+
+} // namespace extensions
+
+#endif // CHROME_COMMON_EXTENSIONS_DRAGGABLE_REGION_H_

Powered by Google App Engine
This is Rietveld 408576698