OLD | NEW |
---|---|
(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_ | |
OLD | NEW |