summaryrefslogtreecommitdiff
path: root/chromium/cc/output/software_frame_data.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/cc/output/software_frame_data.h')
-rw-r--r--chromium/cc/output/software_frame_data.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/chromium/cc/output/software_frame_data.h b/chromium/cc/output/software_frame_data.h
new file mode 100644
index 00000000000..b7fb44a4e81
--- /dev/null
+++ b/chromium/cc/output/software_frame_data.h
@@ -0,0 +1,27 @@
+// Copyright 2013 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 CC_OUTPUT_SOFTWARE_FRAME_DATA_H_
+#define CC_OUTPUT_SOFTWARE_FRAME_DATA_H_
+
+#include "base/memory/shared_memory.h"
+#include "cc/base/cc_export.h"
+#include "ui/gfx/rect.h"
+
+namespace cc {
+
+class CC_EXPORT SoftwareFrameData {
+ public:
+ SoftwareFrameData();
+ ~SoftwareFrameData();
+
+ unsigned id;
+ gfx::Size size;
+ gfx::Rect damage_rect;
+ base::SharedMemoryHandle handle;
+};
+
+} // namespace cc
+
+#endif // CC_OUTPUT_SOFTWARE_FRAME_DATA_H_