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

Unified Diff: cc/mailbox_release_client.h

Issue 11638028: Mailbox support for texture layers. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 | « no previous file | cc/resource_provider.h » ('j') | cc/resource_provider.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/mailbox_release_client.h
diff --git a/cc/mailbox_release_client.h b/cc/mailbox_release_client.h
new file mode 100644
index 0000000000000000000000000000000000000000..416ca0a90dffae1904fb25fbf375c7dd1e4dab76
--- /dev/null
+++ b/cc/mailbox_release_client.h
@@ -0,0 +1,22 @@
+// 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_MAILBOX_RELEASE_CLIENT_H_
+#define CC_MAILBOX_RELEASE_CLIENT_H_
+
+#include "cc/cc_export.h"
+
+namespace cc {
+
+class CC_EXPORT MailboxReleaseClient {
danakj 2012/12/20 02:16:19 This file should be in chromium style. And it need
+public:
+ virtual ~MailboxReleaseClient() { }
+
+ // Called from any thread
+ virtual void mailboxReleased(const std::string& name, unsigned syncPoint) = 0;
piman 2012/12/20 02:14:21 nit: chrome style (naming, 80 cols)
+};
+
+}
danakj 2012/12/20 02:16:19 } // namespace cc
+
+#endif // CC_MAILBOX_RELEASE_CLIENT_H_
« no previous file with comments | « no previous file | cc/resource_provider.h » ('j') | cc/resource_provider.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698