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

Unified Diff: cc/output/compositor_frame_ack.h

Issue 1531403002: Revert "Delete CC." (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years 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
« no previous file with comments | « cc/output/compositor_frame.cc ('k') | cc/output/compositor_frame_ack.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/output/compositor_frame_ack.h
diff --git a/cc/output/compositor_frame_ack.h b/cc/output/compositor_frame_ack.h
new file mode 100644
index 0000000000000000000000000000000000000000..4fedc278a03a9a2fb89652628add229d60618234
--- /dev/null
+++ b/cc/output/compositor_frame_ack.h
@@ -0,0 +1,29 @@
+// Copyright 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 CC_OUTPUT_COMPOSITOR_FRAME_ACK_H_
+#define CC_OUTPUT_COMPOSITOR_FRAME_ACK_H_
+
+#include "base/memory/scoped_ptr.h"
+#include "cc/output/gl_frame_data.h"
+#include "cc/resources/returned_resource.h"
+
+namespace cc {
+
+class CompositorFrameAck {
+ public:
+ CompositorFrameAck();
+ ~CompositorFrameAck();
+
+ ReturnedResourceArray resources;
+ scoped_ptr<GLFrameData> gl_frame_data;
+ unsigned last_software_frame_id;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(CompositorFrameAck);
+};
+
+} // namespace cc
+
+#endif // CC_OUTPUT_COMPOSITOR_FRAME_ACK_H_
« no previous file with comments | « cc/output/compositor_frame.cc ('k') | cc/output/compositor_frame_ack.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698