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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | cc/resource_provider.h » ('j') | cc/resource_provider.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 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
5 #ifndef CC_MAILBOX_RELEASE_CLIENT_H_
6 #define CC_MAILBOX_RELEASE_CLIENT_H_
7
8 #include "cc/cc_export.h"
9
10 namespace cc {
11
12 class CC_EXPORT MailboxReleaseClient {
danakj 2012/12/20 02:16:19 This file should be in chromium style. And it need
13 public:
14 virtual ~MailboxReleaseClient() { }
15
16 // Called from any thread
17 virtual void mailboxReleased(const std::string& name, unsigned syncPoint) = 0;
piman 2012/12/20 02:14:21 nit: chrome style (naming, 80 cols)
18 };
19
20 }
danakj 2012/12/20 02:16:19 } // namespace cc
21
22 #endif // CC_MAILBOX_RELEASE_CLIENT_H_
OLDNEW
« 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